mirror of
https://github.com/yquake2/rogue.git
synced 2024-11-10 06:42:21 +00:00
3fd777fb2e
This is equivalent to the CI workflows added to the yquake2 main repository. The workflows are triggered on commit, for new pull requests and when the pull request branch is updated. The CI is mostly for providing users with up to date test builds.
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: Testbuild for Linux
|
|
run-name: testbuild_linux
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
types:
|
|
- edited
|
|
- opened
|
|
- synchronize
|
|
concurrency:
|
|
# Cancel concurrent workflows for the same PR or commit hash.
|
|
group: ${{github.workflow}}-${{github.event_name == 'pull_request' && github.head_ref || github.sha}}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
build_ubuntu_x64_64:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- env: ubuntu
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Build
|
|
run: |
|
|
# Public runners come with 2 CPUs.
|
|
make -j2
|
|
- name: Create testbuild package
|
|
run: |
|
|
# Create release directory tree
|
|
mkdir -p publish/quake2-rogue-linux-${{github.sha}}/misc/docs
|
|
# Copy release assets
|
|
cp -r release/* publish/quake2-rogue-linux-${{github.sha}}/
|
|
# Copy misc assets
|
|
cp -r stuff/mapfixes publish/quake2-rogue-linux-${{github.sha}}/misc
|
|
cp LICENSE publish/quake2-rogue-linux-${{github.sha}}/misc/docs/LICENSE.txt
|
|
cp README.md publish/quake2-rogue-linux-${{github.sha}}/misc/docs/README.txt
|
|
- name: Upload testbuild package
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: quake2-rogue-linux-${{github.sha}}
|
|
path: publish/
|
|
if-no-files-found: error
|