Skip to content

Commit

Permalink
Use ubuntu 22 runners (#386)
Browse files Browse the repository at this point in the history
Use ubuntu-22 runners for the valgrind, ASAN, and TSAN tests - to avoid
some strange new issue with ubuntu-20.
Generally it doesn't matter much where we run these memory fuzzers.
  • Loading branch information
emlowe authored Aug 16, 2023
1 parent f7d63f6 commit dd5bcd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
valgrind:
name: valgrind ubuntu
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -27,7 +27,7 @@ jobs:
asan:
name: ASAN ubuntu
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -48,7 +48,7 @@ jobs:
tsan:
name: TSAN ubuntu
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit dd5bcd7

Please sign in to comment.