Skip to content

Commit

Permalink
[ci] remove config not actually running x86 ubuntu
Browse files Browse the repository at this point in the history
(thx stbuehler)

(could install :i386 dev packages and configure cross-compiler,
 but x86 build coverage is already on alpine VMs, though with musl libc)
  • Loading branch information
gstrauss committed Jan 13, 2024
1 parent 90d223b commit 5001716
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
name: Linux-ubuntu-${{matrix.platform}}-gcc
strategy:
matrix:
platform: ['x64', 'x86']
platform: ['x64']
steps:
- uses: actions/checkout@v4
- uses: egor-tensin/setup-gcc@v1
with:
platform: ${{matrix.platform}}
- name: Install packages
run: |
sudo apt-get install cmake meson ninja-build pkg-config perl scons \
Expand All @@ -42,10 +44,12 @@ jobs:
name: Linux-ubuntu-${{matrix.platform}}-clang
strategy:
matrix:
platform: ['x64', 'x86']
platform: ['x64']
steps:
- uses: actions/checkout@v4
- uses: egor-tensin/setup-clang@v1
with:
platform: ${{matrix.platform}}
- name: Install packages
run: |
sudo apt-get install cmake meson ninja-build pkg-config perl scons \
Expand Down

0 comments on commit 5001716

Please sign in to comment.