Add building web assets to CI/CD
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m42s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 6m27s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
Deon George 2025-01-03 14:15:57 +11:00
parent 3f2cd56884
commit 662d181b04

View File

@ -16,7 +16,8 @@ jobs:
# name: Test Application # name: Test Application
# runs-on: docker-${{ matrix.arch }} # runs-on: docker-${{ matrix.arch }}
# container: # container:
# image: gitea.dege.au/docker/php:8.3-fpm-ldap-test # image: docker:dind
# privileged: true
# #
# steps: # steps:
# - name: Environment Setup # - name: Environment Setup
@ -24,7 +25,7 @@ jobs:
# # If we have a proxy use it # # 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 # if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
# # Some pre-reqs # # Some pre-reqs
# apk add git nodejs # apk add git nodejs npm
# ## Some debugging info # ## Some debugging info
# # env|sort # # env|sort
# #
@ -36,15 +37,17 @@ jobs:
# mv .env.testing .env # mv .env.testing .env
# # Install Composer and project dependencies. # # Install Composer and project dependencies.
# mkdir -p ${COMPOSER_HOME} # mkdir -p ${COMPOSER_HOME}
# if [ -n "${{ secrets.COMPOSER_GITHUB_TOKEN }}" ]; then echo ${{ secrets.COMPOSER_GITHUB_TOKEN }} > ${COMPOSER_HOME}/auth.json; fi # if [ -n "${{ secrets.COMPOSER_GITHUB_TOKEN }}" ]; then composer config github-oauth.github.com ${{ secrets.COMPOSER_GITHUB_TOKEN }}; fi
# composer install # composer install
# # Generate an application key. Re-cache. # # Generate an application key. Re-cache.
# php artisan key:generate # php artisan key:generate
# php artisan migrate # php artisan migrate
# php artisan db:seed # php artisan db:seed
# # Build assets
# npm i
# npm run prod
# # run laravel tests # # run laravel tests
# touch storage/app/test/*ZIP storage/app/test/file/* # # XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text --colors=never
# XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text --colors=never
build: build:
strategy: strategy:
@ -69,7 +72,7 @@ jobs:
# If we have a proxy use it # 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 if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
# Some pre-reqs # Some pre-reqs
apk add git curl nodejs apk add git curl nodejs npm
# Start docker # Start docker
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3 ( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
## Some debugging info ## Some debugging info
@ -92,6 +95,12 @@ jobs:
- name: Code Checkout - name: Code Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Build Assets
run: |
# Build assets
npm i
npm run prod
- name: Record version and Delete Unnecessary files - name: Record version and Delete Unnecessary files
run: | run: |
echo ${GITHUB_SHA::8} > VERSION echo ${GITHUB_SHA::8} > VERSION