You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.7 KiB
63 lines
1.7 KiB
name: Linux x64 SDL1 |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
paths-ignore: |
|
- '*.md' |
|
- 'docs/**' |
|
pull_request: |
|
types: [ opened, synchronize ] |
|
paths-ignore: |
|
- '*.md' |
|
- 'docs/**' |
|
|
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.ref }} |
|
cancel-in-progress: true |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-22.04 |
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@v6 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- name: Create Build Environment |
|
run: > |
|
sudo apt-get update && |
|
sudo apt-get install -y cmake file g++ git libfmt-dev libsdl1.2-dev libsodium-dev libpng-dev libbz2-dev rpm smpq |
|
|
|
- name: Cache CMake build folder |
|
uses: actions/cache@v5 |
|
with: |
|
path: build |
|
key: ${{ github.workflow }}-v3-${{ github.sha }} |
|
restore-keys: ${{ github.workflow }}-v3- |
|
|
|
- name: Configure CMake |
|
shell: bash |
|
working-directory: ${{github.workspace}} |
|
# Disable LTO to work around an ICE in gcc11 |
|
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTING=OFF -DCPACK=ON -DUSE_SDL1=ON -DDISCORD_INTEGRATION=ON -DDISABLE_LTO=ON |
|
|
|
- name: Build |
|
working-directory: ${{github.workspace}} |
|
shell: bash |
|
run: cmake --build build -j $(nproc) --target package |
|
|
|
- name: Package |
|
run: Packaging/nix/LinuxReleasePackaging.sh |
|
|
|
- name: Upload-Package |
|
if: ${{ !env.ACT }} |
|
uses: actions/upload-artifact@v6 |
|
with: |
|
name: devilutionx_linux_x86_64_SDL1.tar.xz |
|
path: devilutionx.tar.xz |
|
|
|
- name: Clean up artifacts |
|
run: rm -rf build/_CPack_Packages build/package build/*.deb build/*.rpm build/*.appimage build/*.tar.xz
|
|
|