diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-12-07 12:11:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 12:11:33 +0000 |
commit | 3f501516666662e8a7adaacf8b75e72d5956dc04 (patch) | |
tree | 522b5dee5710031471d72f607fcd44e18c3ba059 | |
parent | 9666f2b169b5192b5c827d605cc80e6987e1aac5 (diff) | |
parent | 19d5f921d0ce536e0e9419b3cfc5e5c2fcef9e33 (diff) | |
download | gcc-3f501516666662e8a7adaacf8b75e72d5956dc04.zip gcc-3f501516666662e8a7adaacf8b75e72d5956dc04.tar.gz gcc-3f501516666662e8a7adaacf8b75e72d5956dc04.tar.bz2 |
Merge #1688
1688: ci: Lock Ubuntu version to 20.04 r=CohenArthur a=CohenArthur
This locks all of our CI images to Ubuntu-20.04.
This should be upgraded eventually to 22.04, in time. I'll open up an issue to accompany it.
All of yesterday's PRs will need to be rebased on master once this is merged
Co-authored-by: Arthur Cohen <arthur.cohen@embecosm.com>
-rw-r--r-- | .github/workflows/bootstrap.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ccpp.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 9031d347..5882713 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -10,7 +10,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 22440b0..8c9f027 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -18,7 +18,7 @@ jobs: # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). LC_ALL: C.UTF-8 - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 @@ -95,7 +95,7 @@ jobs: # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). LC_ALL: C.UTF-8 - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 |