Skip to content

Commit

Permalink
Fix Linux package workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralith committed Jul 31, 2024
1 parent a3c57e6 commit 77b68ff
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Package
on:
push:
branches: ['master']
pull_request:

jobs:
package-windows:
Expand Down Expand Up @@ -42,21 +43,15 @@ jobs:

package-linux:
name: Linux
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64
runs-on: ubuntu-20.04
steps:
- name: Install Git LFS
run: |
yum install -y git-lfs
- uses: actions/checkout@v4
with:
lfs: true
- name: Install dependencies
run: |
yum install -y alsa-lib-devel vulkan-devel python3 fontconfig-devel
run: sudo apt update && sudo apt-get -y install libasound2-dev libvulkan-dev libfontconfig-dev

- name: Install shaderc
if: matrix.os == 'ubuntu-latest'
run: |
wget -nv -r -nd -A install.tgz 'https://storage.googleapis.com/shaderc/badges/build_link_linux_clang_release.html'
tar xf install.tgz
Expand Down

0 comments on commit 77b68ff

Please sign in to comment.