Compare commits
2 Commits
a56d67e1a1
...
55573ef6ed
Author | SHA1 | Date | |
---|---|---|---|
55573ef6ed | |||
508c8ceaaf |
147
.gitea/workflows/build_docker.yaml
Normal file
147
.gitea/workflows/build_docker.yaml
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
name: Create Docker Image
|
||||||
|
run-name: ${{ gitea.actor }} Building Docker Image 🐳
|
||||||
|
on: [push]
|
||||||
|
env:
|
||||||
|
VERSION: latest
|
||||||
|
DOCKER_HOST: tcp://127.0.0.1:2375
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# test:
|
||||||
|
# strategy:
|
||||||
|
# matrix:
|
||||||
|
# arch:
|
||||||
|
# - x86_64
|
||||||
|
# # arm64
|
||||||
|
#
|
||||||
|
# name: Test Application
|
||||||
|
# runs-on: docker-${{ matrix.arch }}
|
||||||
|
# container:
|
||||||
|
# image: gitea.dege.au/docker/php:8.3-fpm-pgsql-server-test
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - name: Environment Setup
|
||||||
|
# run: |
|
||||||
|
# # If we have a proxy use it
|
||||||
|
# if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
||||||
|
# # Some pre-reqs
|
||||||
|
# apk add git nodejs
|
||||||
|
# ## Some debugging info
|
||||||
|
# # env|sort
|
||||||
|
#
|
||||||
|
# - name: Code Checkout
|
||||||
|
# uses: actions/checkout@v4
|
||||||
|
#
|
||||||
|
# - name: Run Tests
|
||||||
|
# run: |
|
||||||
|
# mv .env.testing .env
|
||||||
|
# # Install Composer and project dependencies.
|
||||||
|
# mkdir -p ${COMPOSER_HOME}
|
||||||
|
# if [ -n "${{ secrets.COMPOSER_GITHUB_TOKEN }}" ]; then echo ${{ secrets.COMPOSER_GITHUB_TOKEN }} > ${COMPOSER_HOME}/auth.json; fi
|
||||||
|
# composer install
|
||||||
|
# # Generate an application key. Re-cache.
|
||||||
|
# php artisan key:generate
|
||||||
|
# php artisan migrate
|
||||||
|
# php artisan db:seed
|
||||||
|
# # run laravel tests
|
||||||
|
# touch storage/app/test/*ZIP storage/app/test/file/*
|
||||||
|
# XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text --colors=never
|
||||||
|
|
||||||
|
build:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch:
|
||||||
|
- x86_64
|
||||||
|
# - arm64
|
||||||
|
# needs: [test]
|
||||||
|
|
||||||
|
name: Build Docker Image
|
||||||
|
runs-on: docker-${{ matrix.arch }}
|
||||||
|
container:
|
||||||
|
image: docker:dind
|
||||||
|
privileged: true
|
||||||
|
env:
|
||||||
|
ARCH: ${{ matrix.arch }}
|
||||||
|
VERSIONARCH: ${{ env.VERSION }}-${{ env.ARCH }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Environment Setup
|
||||||
|
run: |
|
||||||
|
# If we have a proxy use it
|
||||||
|
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
||||||
|
# Some pre-reqs
|
||||||
|
apk add git curl nodejs
|
||||||
|
# Start docker
|
||||||
|
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
||||||
|
## Some debugging info
|
||||||
|
# docker info && docker version
|
||||||
|
env|sort
|
||||||
|
echo "PRT: ${{ secrets.PKG_WRITE_TOKEN }}"
|
||||||
|
|
||||||
|
- name: Registry FQDN Setup
|
||||||
|
id: registry
|
||||||
|
run: |
|
||||||
|
registry=${{ github.server_url }}
|
||||||
|
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Container Registry Login
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ${{ steps.registry.outputs.registry }}
|
||||||
|
username: ${{ gitea.actor }}
|
||||||
|
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
||||||
|
|
||||||
|
- name: Code Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Record version
|
||||||
|
run: |
|
||||||
|
pwd
|
||||||
|
ls -al
|
||||||
|
echo ${GITHUB_SHA::8} > VERSION
|
||||||
|
cat VERSION
|
||||||
|
|
||||||
|
- name: Build and Push Docker Image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: docker/Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"
|
||||||
|
|
||||||
|
manifest:
|
||||||
|
name: Final Docker Image Manifest
|
||||||
|
runs-on: docker-x86_64
|
||||||
|
container:
|
||||||
|
image: docker:dind
|
||||||
|
privileged: true
|
||||||
|
needs: [build]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Environment Setup
|
||||||
|
run: |
|
||||||
|
# If we have a proxy use it
|
||||||
|
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
||||||
|
# Some pre-reqs
|
||||||
|
apk add git curl nodejs
|
||||||
|
# Start docker
|
||||||
|
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
||||||
|
|
||||||
|
- name: Registry FQDN Setup
|
||||||
|
id: registry
|
||||||
|
run: |
|
||||||
|
registry=${{ github.server_url }}
|
||||||
|
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Container Registry Login
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ${{ steps.registry.outputs.registry }}
|
||||||
|
username: ${{ gitea.actor }}
|
||||||
|
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build Docker Manifest
|
||||||
|
run: |
|
||||||
|
docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }} \
|
||||||
|
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-x86_64 \
|
||||||
|
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-arm64
|
||||||
|
docker manifest push --purge ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
|
@ -1,14 +0,0 @@
|
|||||||
stages:
|
|
||||||
- test
|
|
||||||
- build
|
|
||||||
|
|
||||||
# This folder is cached between builds
|
|
||||||
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
|
|
||||||
cache:
|
|
||||||
key: ${CI_JOB_NAME_SLUG}-${CI_COMMIT_REF_SLUG}
|
|
||||||
paths:
|
|
||||||
- vendor/
|
|
||||||
|
|
||||||
include:
|
|
||||||
- .gitlab-test.yml
|
|
||||||
- .gitlab-docker-x86_64.yml
|
|
@ -1,27 +0,0 @@
|
|||||||
docker:
|
|
||||||
variables:
|
|
||||||
VERSION: latest
|
|
||||||
DOCKER_HOST: tcp://docker:2375
|
|
||||||
|
|
||||||
stage: build
|
|
||||||
|
|
||||||
image: docker:latest
|
|
||||||
services:
|
|
||||||
- docker:dind
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- docker info && docker version
|
|
||||||
- echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
|
|
||||||
- if [ -n "$GITHUB_TOKEN" ]; then cat $GITHUB_TOKEN |base64 -d > auth.json; fi
|
|
||||||
|
|
||||||
script:
|
|
||||||
- if [ -f init ]; then chmod 500 init; fi
|
|
||||||
- echo -n ${CI_COMMIT_SHORT_SHA} > VERSION
|
|
||||||
- rm -rf vendor/ database/schema database/seeders database/factories/*
|
|
||||||
- docker build -t ${CI_REGISTRY_IMAGE}:${VERSION} .
|
|
||||||
- docker push ${CI_REGISTRY_IMAGE}:${VERSION}
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- x86_64
|
|
||||||
only:
|
|
||||||
- master
|
|
@ -1,48 +0,0 @@
|
|||||||
test:
|
|
||||||
image: ${CI_REGISTRY}/leenooks/php:8.1-fpm-alpine-mysql-test
|
|
||||||
|
|
||||||
stage: test
|
|
||||||
|
|
||||||
# NOTE: This service is dependant on project file configuration, which is not there if the cache was deleted
|
|
||||||
# resulting in the testing to fail on the first run.
|
|
||||||
services:
|
|
||||||
- mariadb:10.5
|
|
||||||
|
|
||||||
variables:
|
|
||||||
MYSQL_DATABASE: testing
|
|
||||||
MYSQL_ROOT_PASSWORD: test
|
|
||||||
MYSQL_USER: test
|
|
||||||
MYSQL_PASSWORD: test
|
|
||||||
|
|
||||||
tags:
|
|
||||||
- php
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
- test
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- mv .env.testing .env
|
|
||||||
|
|
||||||
# Install Composer and project dependencies.
|
|
||||||
- mkdir -p ${COMPOSER_HOME}
|
|
||||||
- if [ -n "$GITHUB_TOKEN" ]; then cat $GITHUB_TOKEN |base64 -d > ${COMPOSER_HOME}/auth.json; fi
|
|
||||||
- composer install
|
|
||||||
|
|
||||||
# Add mysql client for schema pre-load
|
|
||||||
- apt update -o Acquire::ForceIPv4=true && apt install -o Acquire::ForceIPv4=true -y mariadb-client
|
|
||||||
|
|
||||||
# Generate an application key. Re-cache.
|
|
||||||
- php artisan key:generate --env=testing
|
|
||||||
- php artisan config:cache --env=testing
|
|
||||||
- php artisan migrate
|
|
||||||
- php artisan db:seed
|
|
||||||
|
|
||||||
script:
|
|
||||||
# run laravel tests
|
|
||||||
- XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text --colors=never
|
|
||||||
|
|
||||||
# run frontend tests
|
|
||||||
# if you have any task for testing frontend
|
|
||||||
# set it in your package.json script
|
|
||||||
# comment this out if you don't have a frontend test
|
|
||||||
# npm test
|
|
@ -21,15 +21,16 @@
|
|||||||
"laravel/passport": "^10.1",
|
"laravel/passport": "^10.1",
|
||||||
"laravel/socialite": "^5.2",
|
"laravel/socialite": "^5.2",
|
||||||
"laravel/ui": "^3.2",
|
"laravel/ui": "^3.2",
|
||||||
"leenooks/dreamscape": "^0.1.0",
|
"laravel/dreamscape": "^0.1.0",
|
||||||
"leenooks/intuit": "^0.1.2",
|
"laravel/intuit": "^0.1.7",
|
||||||
"leenooks/laravel": "^9.2.6",
|
"laravel/leenooks": "^9.2.6",
|
||||||
"leenooks/laravel-theme": "^v2.0.18",
|
"leenooks/laravel-theme": "^v2.0.18",
|
||||||
"nunomaduro/laravel-console-summary": "^1.8",
|
"nunomaduro/laravel-console-summary": "^1.8",
|
||||||
"paypal/paypal-checkout-sdk": "^1.0",
|
"paypal/paypal-checkout-sdk": "^1.0",
|
||||||
"rennokki/laravel-eloquent-query-cache": "^3.3",
|
"rennokki/laravel-eloquent-query-cache": "^3.3",
|
||||||
"repat/laravel-job-models": "^0.7",
|
"repat/laravel-job-models": "^0.7",
|
||||||
"romanzipp/laravel-queue-monitor": "^2.0"
|
"romanzipp/laravel-queue-monitor": "^2.0",
|
||||||
|
"web-auth/webauthn-lib": "^4.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"barryvdh/laravel-debugbar": "^3.6",
|
"barryvdh/laravel-debugbar": "^3.6",
|
||||||
@ -57,15 +58,15 @@
|
|||||||
"repositories": {
|
"repositories": {
|
||||||
"intuit": {
|
"intuit": {
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://dev.dege.au/leenooks/intuit"
|
"url": "https://gitea.dege.au/laravel/intuit.git"
|
||||||
},
|
},
|
||||||
"laravel": {
|
"leenooks": {
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://dev.dege.au/leenooks/laravel"
|
"url": "https://gitea.dege.au/laravel/leenooks.git"
|
||||||
},
|
},
|
||||||
"dreamscape": {
|
"dreamscape": {
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
"url": "https://dev.dege.au/leenooks/dreamscape"
|
"url": "https://gitea.dege.au/laravel/dreamscape.git"
|
||||||
},
|
},
|
||||||
"laravel-theme": {
|
"laravel-theme": {
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
|
2947
composer.lock
generated
2947
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
|||||||
FROM registry.dege.au/leenooks/php:8.1-fpm-alpine-mysql
|
FROM gitea.dege.au/docker/php:8.3-fpm-pgsql
|
||||||
|
|
||||||
COPY . /var/www/html/
|
COPY . /var/www/html/
|
||||||
|
|
||||||
@ -6,7 +6,9 @@ RUN mkdir -p ${COMPOSER_HOME} \
|
|||||||
&& ([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true \
|
&& ([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true \
|
||||||
&& touch .composer.refresh \
|
&& touch .composer.refresh \
|
||||||
&& mv .env.example .env \
|
&& mv .env.example .env \
|
||||||
|
&& apk add --no-cache git \
|
||||||
&& FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
|
&& FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
|
||||||
|
&& apk del --no-cache git \
|
||||||
&& chmod +x /var/www/html/artisan \
|
&& chmod +x /var/www/html/artisan \
|
||||||
&& /var/www/html/artisan storage:link \
|
&& /var/www/html/artisan storage:link \
|
||||||
&& rm -rf ${COMPOSER_HOME}/* .git* composer.lock
|
&& rm -rf ${COMPOSER_HOME}/* .git* composer.lock
|
Loading…
Reference in New Issue
Block a user