2024-09-17 13:09:31 -04:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-09-17 13:29:40 -04:00
|
|
|
- 'master'
|
2024-09-17 13:24:47 -04:00
|
|
|
release:
|
|
|
|
types: [created]
|
2024-09-17 13:09:31 -04:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: php:8.3
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-09-17 13:24:47 -04:00
|
|
|
uses: actions/checkout@v4
|
2024-09-17 13:09:31 -04:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
apt update -yqq
|
|
|
|
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
|
|
|
|
|
|
|
- name: Install phive
|
|
|
|
run: |
|
|
|
|
wget -O phive.phar https://phar.io/releases/phive.phar
|
|
|
|
wget -O phive.phar.asc https://phar.io/releases/phive.phar.asc
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79
|
|
|
|
gpg --verify phive.phar.asc phive.phar
|
|
|
|
chmod +x phive.phar
|
|
|
|
mv phive.phar /usr/local/bin/phive
|
|
|
|
|
|
|
|
- name: Install phab
|
|
|
|
run: |
|
|
|
|
phive install phpab --global --trust-gpg-keys 0x2A8299CE842DD38C
|
|
|
|
|
|
|
|
- name: Install latest version of NCC
|
|
|
|
run: |
|
|
|
|
git clone https://git.n64.cc/nosial/ncc.git
|
|
|
|
cd ncc
|
|
|
|
make redist
|
2024-09-17 13:18:20 -04:00
|
|
|
# Find the dynamically generated NCC directory
|
|
|
|
NCC_DIR=$(find build/ -type d -name "ncc_*" | head -n 1)
|
|
|
|
if [ -z "$NCC_DIR" ]; then
|
|
|
|
echo "NCC build directory not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
php "$NCC_DIR/INSTALL" --auto --install-composer
|
2024-09-17 13:09:31 -04:00
|
|
|
cd .. && rm -rf ncc
|
|
|
|
|
|
|
|
- name: Build project
|
|
|
|
run: |
|
|
|
|
ncc build --config release --log-level debug
|
|
|
|
|
2024-09-17 13:36:25 -04:00
|
|
|
- name: Upload build artifacts
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ncc-build
|
|
|
|
path: build/
|
|
|
|
|
2024-09-17 13:09:31 -04:00
|
|
|
release:
|
2024-09-17 13:36:25 -04:00
|
|
|
needs: build
|
2024-09-17 13:09:31 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: php:8.3
|
2024-09-17 13:29:40 -04:00
|
|
|
if: github.event_name == 'release'
|
2024-09-17 13:09:31 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-09-17 13:24:47 -04:00
|
|
|
uses: actions/checkout@v4
|
2024-09-17 13:09:31 -04:00
|
|
|
|
2024-09-17 13:36:25 -04:00
|
|
|
- name: Download build artifacts
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ncc-build
|
2024-09-17 13:09:31 -04:00
|
|
|
|
2024-09-17 13:24:47 -04:00
|
|
|
- name: Upload release artifact to GitHub
|
2024-09-17 13:09:31 -04:00
|
|
|
run: |
|
2024-09-17 13:24:47 -04:00
|
|
|
BUILD_FILE="build/release/net.nosial.configlib.ncc"
|
|
|
|
if [ -f "$BUILD_FILE" ]; then
|
|
|
|
echo "Uploading build artifact to GitHub release"
|
|
|
|
curl \
|
|
|
|
-X POST \
|
|
|
|
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
|
|
-H "Content-Type: application/zip" \
|
|
|
|
--data-binary @"$BUILD_FILE" \
|
|
|
|
"$GITHUB_API_URL/repos/${{ github.repository }}/releases/${{ github.event.release.id }}/assets?name=$(basename $BUILD_FILE)"
|
|
|
|
else
|
|
|
|
echo "Build artifact not found"
|
|
|
|
exit 1
|
2024-09-17 13:36:25 -04:00
|
|
|
fi
|