mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-03 06:44:27 -04:00
206 lines
6.4 KiB
YAML
206 lines
6.4 KiB
YAML
name: Build and Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and Test
|
|
runs-on: ubuntu-22.04
|
|
|
|
outputs:
|
|
version: ${{ steps.version.outputs.version }}
|
|
version-tag: ${{ steps.version.outputs.version-tag }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: intl, mbstring, mysqli, gd, bcmath, zip
|
|
coverage: none
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Get composer cache directory
|
|
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
|
|
|
|
- name: Cache composer dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- name: Get npm cache directory
|
|
run: echo "NPM_CACHE_DIR=$(npm config get cache)" >> $GITHUB_ENV
|
|
|
|
- name: Cache npm dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ env.NPM_CACHE_DIR }}
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install composer dependencies
|
|
run: composer install --no-dev --optimize-autoloader
|
|
|
|
- name: Install npm dependencies
|
|
run: npm ci
|
|
|
|
- name: Install gulp globally
|
|
run: npm install -g gulp-cli
|
|
|
|
- name: Get version info
|
|
id: version
|
|
run: |
|
|
VERSION=$(grep "application_version" app/Config/App.php | sed "s/.*= '\(.*\)';/\1/g")
|
|
BRANCH=$(echo "${GITHUB_REF#refs/heads/}" | sed 's/feature\///')
|
|
TAG=$(echo "${GITHUB_TAG:-$BRANCH}" | tr '/' '-')
|
|
SHORT_SHA=$(git rev-parse --short=6 HEAD)
|
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
echo "version-tag=$VERSION-$BRANCH-$SHORT_SHA" >> $GITHUB_OUTPUT
|
|
echo "short-sha=$SHORT_SHA" >> $GITHUB_OUTPUT
|
|
echo "branch=$BRANCH" >> $GITHUB_OUTPUT
|
|
env:
|
|
GITHUB_TAG: ${{ github.ref_name }}
|
|
|
|
- name: Create .env file
|
|
run: |
|
|
cp .env.example .env
|
|
sed -i 's/production/development/g' .env
|
|
|
|
- name: Update commit hash
|
|
run: |
|
|
SHORT_SHA="${{ steps.version.outputs.short-sha }}"
|
|
sed -i "s/commit_sha1 = 'dev'/commit_sha1 = '$SHORT_SHA'/g" app/Config/OSPOS.php
|
|
|
|
- name: Build frontend assets
|
|
run: npm run build
|
|
|
|
- name: Run PHPUnit tests
|
|
run: |
|
|
cp .env.example .env
|
|
docker run -d --name mysql \
|
|
-e MYSQL_ROOT_PASSWORD=root \
|
|
-e MYSQL_DATABASE=ospos \
|
|
-e MYSQL_USER=admin \
|
|
-e MYSQL_PASSWORD=pointofsale \
|
|
-p 3306:3306 \
|
|
mariadb:10.5
|
|
|
|
# Wait for MariaDB
|
|
until docker exec mysql mysqladmin ping -h 127.0.0.1 -u root -proot --silent; do
|
|
echo "Waiting for MariaDB..."
|
|
sleep 2
|
|
done
|
|
|
|
# Initialize database
|
|
docker exec -i mysql mysql -u root -proot ospos < app/Database/database.sql || true
|
|
|
|
# Run tests
|
|
vendor/bin/phpunit --testdox || true
|
|
|
|
docker stop mysql && docker rm mysql
|
|
|
|
- name: Build Docker image
|
|
run: docker build . --target ospos -t ospos:latest
|
|
|
|
- name: Create distribution archives
|
|
run: |
|
|
gulp compress
|
|
VERSION="${{ steps.version.outputs.version }}"
|
|
SHORT_SHA="${{ steps.version.outputs.short-sha }}"
|
|
mv dist/opensourcepos.tar.gz "dist/opensourcepos.$VERSION.$SHORT_SHA.tgz" || true
|
|
mv dist/opensourcepos.zip "dist/opensourcepos.$VERSION.$SHORT_SHA.zip" || true
|
|
continue-on-error: true
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: dist-${{ steps.version.outputs.short-sha }}
|
|
path: dist/
|
|
retention-days: 7
|
|
|
|
- name: Login to Docker Hub
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Push Docker images
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
run: |
|
|
TAG="${{ steps.version.outputs.version-tag }}"
|
|
docker tag ospos:latest jekkos/opensourcepos:$TAG
|
|
docker push jekkos/opensourcepos:$TAG
|
|
|
|
# Also push latest tag for master
|
|
docker tag ospos:latest jekkos/opensourcepos:latest
|
|
docker push jekkos/opensourcepos:latest
|
|
|
|
release:
|
|
name: Create Release
|
|
needs: build
|
|
runs-on: ubuntu-22.04
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Download build artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: dist-${{ needs.build.outputs.short-sha }}
|
|
path: dist/
|
|
|
|
- name: Get version info
|
|
id: version
|
|
run: |
|
|
VERSION="${{ needs.build.outputs.version }}"
|
|
SHORT_SHA=$(git rev-parse --short=6 HEAD)
|
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
echo "short-sha=$SHORT_SHA" >> $GITHUB_OUTPUT
|
|
|
|
- name: Create/Update unstable release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
tag_name: unstable
|
|
name: Unstable OpenSourcePOS
|
|
body: |
|
|
This is a build of the latest master which might contain bugs. Use at your own risk.
|
|
|
|
Check the releases section for the latest official release.
|
|
files: |
|
|
dist/opensourcepos.${{ steps.version.outputs.version }}.${{ steps.version.outputs.short-sha }}.zip
|
|
prerelease: true
|
|
draft: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |