From fef90487fc6e1245faa55af399c939d55b194cfd Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 18 Oct 2023 13:22:44 -0600 Subject: [PATCH 1/2] Remove ubuntu 18.04 CI --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fe4a29..b718b5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,10 +48,6 @@ jobs: c-compiler: clang-7 cxx-compiler: clang++-7 rust: stable - - os: ubuntu-18.04 - rust: stable - - os: ubuntu-18.04 - rust: 1.48.0 runs-on: ${{ matrix.os }} From 852ccee919b15849def298ade89a07cd1fd7bd2e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 18 Oct 2023 13:24:28 -0600 Subject: [PATCH 2/2] Run apt-get update before installing --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b718b5d..4d88aa8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,9 @@ jobs: - if: ${{ matrix.target != '' && matrix.os == 'ubuntu-20.04' }} name: Install cross tools - run: sudo apt-get install gcc-multilib g++-multilib + run: | + sudo apt-get update + sudo apt-get install gcc-multilib g++-multilib - if: ${{ matrix.target == '' && matrix.c-compiler == '' }} name: Build / test