Add template and CSS customizations for FAUST CTF 2024 #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
name: Lint soure code | |
runs-on: ubuntu-latest | |
container: python:3.11-bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install -e .[dev] | |
- run: make lint | |
# Test with Tox, a recent Python version and libraries from PyPI | |
test_tox: | |
name: Test with Tox | |
runs-on: ubuntu-latest | |
container: python:3.11-bookworm | |
permissions: | |
# Required for "EnricoMi/publish-unit-test-result-action" | |
checks: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
run: | | |
pip install tox | |
# Make sure we have our dependencies, which are not required for Tox but for `make build` | |
pip install -e . | |
# Ping is required for VPNStatusTest | |
apt-get --yes update | |
apt-get --yes install iputils-ping | |
- run: make build | |
- run: tox -e py311 -- --junitxml=.tox/py311/log/results.xml | |
- name: Publish unit test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: .tox/py*/log/results.xml | |
comment_mode: "off" | |
- name: Archive unit test results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: tox-test-results | |
path: .tox/py*/log/results.xml | |
if-no-files-found: error | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: tox-code-coverage-report | |
path: .tox/py*/log/htmlcov | |
if-no-files-found: error | |
build_deb_package: | |
name: Build Debian package | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- run: apt-get --yes update | |
- run: apt-get --yes install --no-install-recommends devscripts dpkg-dev equivs | |
# Add `--yes` to mk-build-deps' default options for apt-get | |
- run: mk-build-deps --install --tool 'apt-get --yes -o Debug::pkgProblemResolver=yes --no-install-recommends' debian/control | |
- run: dpkg-buildpackage --unsigned-changes --unsigned-buildinfo | |
- run: mv ../ctf-gameserver_*.deb . | |
- name: Store Debian package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deb-package | |
path: ctf-gameserver_*.deb | |
if-no-files-found: error | |
# Test with Python and libraries from Debian Stable sources | |
test_debian: | |
name: Test with Debian | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
needs: build_deb_package | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: deb-package | |
- run: apt-get --yes update | |
# Install our package in order to install its dependencies | |
- run: apt-get --yes install --no-install-recommends ./ctf-gameserver_*.deb | |
- run: apt-get --yes install make curl unzip python3-pytest python3-pytest-cov | |
- run: make build | |
- run: pytest-3 --junitxml=results.xml --cov=src --cov-report=term --cov-report=html tests | |
- name: Archive unit test results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: debian-test-results | |
path: results.xml | |
if-no-files-found: error | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: debian-code-coverage-report | |
path: htmlcov | |
if-no-files-found: error |