Skip to content

Commit

Permalink
Update build_and_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
blapie authored Oct 24, 2024
1 parent 38fce14 commit 4e3799c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ah-ubuntu_22_04-c7g_2x-50]
os: [ubuntu-24.04, ah-ubuntu_22_04-c7g_2x-50]
compiler: [gcc, llvm]

name: build-native-${{ matrix.os }}-${{ matrix.compiler }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Set x86_64 config
shell: bash -ex -o pipefail {0}
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-24.04' }}
run: |
export EXTRA_CMAKE_FLAGS="\
-DSLEEF_ENFORCE_SSE2=ON -DSLEEF_ENFORCE_SSE4=ON \
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ah-ubuntu_22_04-c7g_2x-50]
os: [ubuntu-24.04, ah-ubuntu_22_04-c7g_2x-50]
compiler: [gcc, llvm]

name: test-native-${{ matrix.os }}-${{ matrix.compiler }}
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
if: always()

build-cross:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build-native]
strategy:
fail-fast: false
Expand Down Expand Up @@ -224,10 +224,10 @@ jobs:
rm -rf sysroot/usr/libexec/gcc
if: steps.check-sysroot-cache.outputs.cache-hit != 'true'

- name: Download build-native-ubuntu-latest-${{ matrix.compiler }} artifacts
- name: Download build-native-ubuntu-24.04-${{ matrix.compiler }} artifacts
uses: actions/download-artifact@v3
with:
name: build-native-ubuntu-latest-${{ matrix.compiler }}
name: build-native-ubuntu-24.04-${{ matrix.compiler }}

- name: Fix _build-native permissions
run: |
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:

test-cross:
if: github.event_name == 'push' && github.ref_name == 'master'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build-native, build-cross]
strategy:
fail-fast: false
Expand Down Expand Up @@ -345,10 +345,10 @@ jobs:
run: |
cat /proc/cpuinfo
- name: Download build-native-ubuntu-latest-${{ matrix.compiler }} artifacts
- name: Download build-native-ubuntu-24.04-${{ matrix.compiler }} artifacts
uses: actions/download-artifact@v3
with:
name: build-native-ubuntu-latest-${{ matrix.compiler }}
name: build-native-ubuntu-24.04-${{ matrix.compiler }}

- name: Download build-${{ matrix.arch }}-${{ matrix.compiler }} artifacts
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 4e3799c

Please sign in to comment.