Skip to content

Commit

Permalink
Pipeline use docker for linux builds (QW-Group#867)
Browse files Browse the repository at this point in the history
* PIPELINE: linux - use docker to generate appimage so we can choose the distro/version, this is primarily so we can use a newer version of libsdl2 in which mice above 1khz work properly
  • Loading branch information
ciscon authored Nov 19, 2023
1 parent 4fb62c3 commit 988190e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-and-deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,21 @@ jobs:
include:
- target: linux-x86_64
platform: x86_64
container:
image: debian:testing
options: --privileged

steps:
- name: Install dependencies
run: apt-get -qy update && apt-get -qy install curl file libfuse2 git make sudo git

- name: Check out code
uses: actions/checkout@v3
with:
submodules: true

- name: Install dependencies
run: sudo apt-get install libfuse2 openssh-client

- name: Build
run: ./misc/appimage/appimage-manual_creation.sh
run: git config --global --add safe.directory $PWD && ./misc/appimage/appimage-manual_creation.sh

- name: Create checksum
run: |
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/build-and-deploy-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,21 @@ jobs:
include:
- target: linux-x86_64
platform: x86_64
container:
image: debian:testing
options: --privileged

steps:
- name: Install dependencies
run: apt-get -qy update && apt-get -qy install curl file libfuse2 git make sudo git ssh-client

- name: Check out code
uses: actions/checkout@v3
with:
submodules: true

- name: Install dependencies
run: sudo apt-get install libfuse2 openssh-client
- name: Build
run: git config --global --add safe.directory $PWD && ./misc/appimage/appimage-manual_creation.sh

- name: Build
run: ./misc/appimage/appimage-manual_creation.sh
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/build-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,21 @@ jobs:
include:
- target: linux-x86_64
platform: x86_64
container:
image: debian:testing
options: --privileged

steps:
- name: Install dependencies
run: apt-get -qy update && apt-get -qy install curl file libfuse2 git make sudo git

- name: Check out code
uses: actions/checkout@v3
with:
submodules: true

- name: Install dependencies
run: sudo apt-get install libfuse2

- name: Build
run: ./misc/appimage/appimage-manual_creation.sh
run: git config --global --add safe.directory $PWD && ./misc/appimage/appimage-manual_creation.sh

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 988190e

Please sign in to comment.