Test Commit
This commit is contained in:
parent
bc27a597eb
commit
2b67b085ad
3 changed files with 122 additions and 97 deletions
201
.github/workflows/ncc_workflow.yml
vendored
201
.github/workflows/ncc_workflow.yml
vendored
|
@ -9,8 +9,6 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
@ -23,7 +21,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -yqq
|
apt update -yqq
|
||||||
apt install git libpq-dev libzip-dev zip make wget gnupg gcc -yqq
|
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
||||||
|
|
||||||
- name: Install phive
|
- name: Install phive
|
||||||
run: |
|
run: |
|
||||||
|
@ -51,16 +49,15 @@ jobs:
|
||||||
php "$NCC_DIR/INSTALL" --auto
|
php "$NCC_DIR/INSTALL" --auto
|
||||||
cd .. && rm -rf ncc
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
- name: Compile Project
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
ncc build --config release --log-level debug
|
ncc build --config release --log-level debug
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: release
|
name: release
|
||||||
path: build/release/net.nosial.tgbotlib.ncc
|
path: build/release/net.nosial.tgbotlib.ncc
|
||||||
|
|
||||||
release-compressed:
|
release-compressed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
@ -73,7 +70,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -yqq
|
apt update -yqq
|
||||||
apt install git libpq-dev libzip-dev zip make wget gnupg gcc -yqq
|
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
||||||
|
|
||||||
- name: Install phive
|
- name: Install phive
|
||||||
run: |
|
run: |
|
||||||
|
@ -101,16 +98,15 @@ jobs:
|
||||||
php "$NCC_DIR/INSTALL" --auto
|
php "$NCC_DIR/INSTALL" --auto
|
||||||
cd .. && rm -rf ncc
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
- name: Compile Project
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
ncc build --config release-compressed --log-level debug
|
ncc build --config release-compressed --log-level debug
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: release-compressed
|
name: release-compressed
|
||||||
path: build/release/net.nosial.tgbotlib.gz.ncc
|
path: build/release/net.nosial.tgbotlib.gz.ncc
|
||||||
|
|
||||||
release-executable:
|
release-executable:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
@ -123,7 +119,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -yqq
|
apt update -yqq
|
||||||
apt install git libpq-dev libzip-dev zip make wget gnupg gcc -yqq
|
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
||||||
|
|
||||||
- name: Install phive
|
- name: Install phive
|
||||||
run: |
|
run: |
|
||||||
|
@ -151,16 +147,15 @@ jobs:
|
||||||
php "$NCC_DIR/INSTALL" --auto
|
php "$NCC_DIR/INSTALL" --auto
|
||||||
cd .. && rm -rf ncc
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
- name: Compile Project
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
ncc build --config release-executable --log-level debug
|
ncc build --config release-executable --log-level debug
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: release-executable
|
name: release-executable
|
||||||
path: build/release/TgBotLib
|
path: build/release/TgBotLib
|
||||||
|
|
||||||
release-executable-compressed:
|
release-executable-compressed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
@ -173,7 +168,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -yqq
|
apt update -yqq
|
||||||
apt install git libpq-dev libzip-dev zip make wget gnupg gcc -yqq
|
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
||||||
|
|
||||||
- name: Install phive
|
- name: Install phive
|
||||||
run: |
|
run: |
|
||||||
|
@ -201,18 +196,116 @@ jobs:
|
||||||
php "$NCC_DIR/INSTALL" --auto
|
php "$NCC_DIR/INSTALL" --auto
|
||||||
cd .. && rm -rf ncc
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
- name: Compile Project
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
ncc build --config release-executable-compressed --log-level debug
|
ncc build --config release-executable-compressed --log-level debug
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: release-executable-compressed
|
name: release-executable-compressed
|
||||||
path: build/release/TgBotLib_gz
|
path: build/release/TgBotLib_gz
|
||||||
|
debug:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: php:8.3
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- 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
|
||||||
|
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
|
||||||
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
|
- name: Build project
|
||||||
|
run: |
|
||||||
|
ncc build --config debug --log-level debug
|
||||||
|
|
||||||
|
- name: Upload build artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: debug
|
||||||
|
path: build/debug/net.nosial.tgbotlib.ncc
|
||||||
|
debug-compressed:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: php:8.3
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- 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
|
||||||
|
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
|
||||||
|
cd .. && rm -rf ncc
|
||||||
|
|
||||||
|
- name: Build project
|
||||||
|
run: |
|
||||||
|
ncc build --config debug-compressed --log-level debug
|
||||||
|
|
||||||
|
- name: Upload build artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: debug-compressed
|
||||||
|
path: build/debug/net.nosial.tgbotlib.gz.ncc
|
||||||
|
|
||||||
|
|
||||||
|
# Checking for phpunit.xml
|
||||||
check-phpunit:
|
check-phpunit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
|
@ -228,7 +321,7 @@ jobs:
|
||||||
else
|
else
|
||||||
echo "phpunit-exists=false" >> $GITHUB_OUTPUT
|
echo "phpunit-exists=false" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
|
# Checking for phpdoc.dist.xml
|
||||||
check-phpdoc:
|
check-phpdoc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
|
@ -245,39 +338,8 @@ jobs:
|
||||||
echo "phpdoc-exists=false" >> $GITHUB_OUTPUT
|
echo "phpdoc-exists=false" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
generate_phpdoc:
|
|
||||||
needs: [release, release-compressed, release-executable, check-phpdoc]
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: php:8.3
|
|
||||||
if: needs.check-phpdoc.outputs.phpdoc-exists == 'true'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
apt update -yqq
|
|
||||||
apt install git libpq-dev libzip-dev zip make wget gnupg -yqq
|
|
||||||
|
|
||||||
- name: Download PHPDocumentor
|
|
||||||
run: |
|
|
||||||
wget https://phpdoc.org/phpDocumentor.phar
|
|
||||||
chmod +x phpDocumentor.phar
|
|
||||||
|
|
||||||
- name: Generate PHPDoc
|
|
||||||
run: |
|
|
||||||
php phpDocumentor.phar -d src -t docs
|
|
||||||
|
|
||||||
- name: Upload PHPDoc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: documentation
|
|
||||||
path: docs
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
needs: [release, check-phpunit]
|
needs: [release, release-compressed, release-executable, release-executable-compressed, debug, debug-compressed, check-phpunit]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: php:8.3
|
image: php:8.3
|
||||||
|
@ -329,44 +391,9 @@ jobs:
|
||||||
|
|
||||||
- name: Install NCC packages
|
- name: Install NCC packages
|
||||||
run: |
|
run: |
|
||||||
ncc package install --package="release/net.nosial.tgbotlib.ncc" --source --reinstall -y --log-level debug
|
ncc package install --package="build/release/net.nosial.tgbotlib.ncc" --build-source --reinstall -y --log-level debug
|
||||||
|
|
||||||
- name: Create token.txt
|
|
||||||
run: echo "${{ secrets.TELEGRAM_TEST_TOKEN }}" > tests/token.txt
|
|
||||||
|
|
||||||
- name: Run PHPUnit tests
|
- name: Run PHPUnit tests
|
||||||
run: |
|
run: |
|
||||||
wget https://phar.phpunit.de/phpunit-11.3.phar
|
wget https://phar.phpunit.de/phpunit-11.3.phar
|
||||||
php phpunit-11.3.phar --configuration phpunit.xml
|
php phpunit-11.3.phar --configuration phpunit.xml
|
||||||
|
|
||||||
upload-release-artifacts:
|
|
||||||
needs: [release, release-compressed, release-executable, test]
|
|
||||||
permissions: write-all
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: php:8.3
|
|
||||||
if: github.event_name == 'release'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Download release artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: release
|
|
||||||
path: release
|
|
||||||
|
|
||||||
- name: Download release-compressed artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: release-compressed
|
|
||||||
|
|
||||||
- name: Upload to GitHub Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
release/net.nosial.tgbotlib.ncc
|
|
||||||
release-compressed/net.nosial.tgbotlib.gz.ncc
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
14
Makefile
14
Makefile
|
@ -1,10 +1,9 @@
|
||||||
# Variables
|
# Variables
|
||||||
DEFAULT_CONFIG ?= release
|
DEFAULT_CONFIGURATION ?= release
|
||||||
LOG_LEVEL = debug
|
LOG_LEVEL = debug
|
||||||
PACKAGE = build/$(CONFIG)/net.nosial.tgbotlib.ncc
|
|
||||||
|
|
||||||
# Default Target
|
# Default Target
|
||||||
all: build
|
all: release release-compressed release-executable release-executable-compressed debug debug-compressed
|
||||||
|
|
||||||
# Build Steps
|
# Build Steps
|
||||||
release:
|
release:
|
||||||
|
@ -20,16 +19,15 @@ debug:
|
||||||
debug-compressed:
|
debug-compressed:
|
||||||
ncc build --config=debug-compressed --log-level $(LOG_LEVEL)
|
ncc build --config=debug-compressed --log-level $(LOG_LEVEL)
|
||||||
|
|
||||||
build: release release-compressed release-executable release-executable-compressed debug debug-compressed
|
|
||||||
|
|
||||||
install: build
|
install: release
|
||||||
ncc package install --package=$(PACKAGE) --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
|
ncc package install --package=build/release/net.nosial.tgbotlib.ncc --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
|
||||||
|
|
||||||
test: build
|
test: release
|
||||||
[ -f phpunit.xml ] || { echo "phpunit.xml not found"; exit 1; }
|
[ -f phpunit.xml ] || { echo "phpunit.xml not found"; exit 1; }
|
||||||
phpunit
|
phpunit
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
|
||||||
.PHONY: all build install test clean
|
.PHONY: all install test clean release release-compressed release-executable release-executable-compressed debug debug-compressed
|
|
@ -9,7 +9,7 @@
|
||||||
<source dsn=".">
|
<source dsn=".">
|
||||||
<path>src/TgBotLib</path>
|
<path>src/TgBotLib</path>
|
||||||
</source>
|
</source>
|
||||||
<default-package-name>net.nosial.tgbotlib</default-package-name>
|
<default-package-name>TgBotLib</default-package-name>
|
||||||
</api>
|
</api>
|
||||||
</version>
|
</version>
|
||||||
</phpdocumentor>
|
</phpdocumentor>
|
Loading…
Add table
Reference in a new issue