Skip to content

Commit

Permalink
Change CI dependencies to use yum
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Apr 22, 2024
1 parent 0757a60 commit d86aa37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-apphost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
- gui

include:
# Linux GUI support needs libgtk-3-dev to be installed
# Linux GUI support needs gtk3-devel to be installed
- target:
name: linux_x64
ui: gui
apt_deps: libgtk-3-dev
rpm_deps: gtk3-devel

runs-on: ${{ matrix.target.os }}
container: ${{ matrix.target.container }}
Expand All @@ -56,8 +56,8 @@ jobs:
echo "CARGO_HOME=$HOME/.cargo" >> "$GITHUB_ENV"
- name: Install dependencies
if: ${{ matrix.apt_deps }}
run: sudo apt-get install -y ${{ matrix.apt_deps }}
if: ${{ matrix.rpm_deps }}
run: yum install -y ${{ matrix.rpm_deps }}

- name: Cache toolchain / dependencies
uses: actions/cache@v4
Expand Down

0 comments on commit d86aa37

Please sign in to comment.