From 0aadc1a05f6f486a7b58c1a26dca8ad45bb5ccb5 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Fri, 19 Jul 2024 15:10:09 -0500 Subject: [PATCH] Remove ubuntu-20.04, unused compilers --- .github/workflows/cplusplus.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cplusplus.yml b/.github/workflows/cplusplus.yml index d6375f6b..0df18364 100644 --- a/.github/workflows/cplusplus.yml +++ b/.github/workflows/cplusplus.yml @@ -34,8 +34,8 @@ jobs: fail-fast: false matrix: # compiler: ["llvm", "gcc"] -# # compiler targets (ideally): clang, gcc, MSVCC, pcc, tcc, icc, - os: [ubuntu-latest, windows-latest, macos-latest, macos-13, 'ubuntu-20.04'] +# # compiler targets (ideally): clang, gcc, MSVCC, icc, + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] # include: # - os: windows-latest # compiler: msvc @@ -54,13 +54,6 @@ jobs: python-version: "3.10" cache-dependency-path: '*/requirements.txt' - - name: Setup tcc, pcc - uses: awalsh128/cache-apt-pkgs-action@latest - if: ${{ matrix.os == 'ubuntu-latest' }} - with: - packages: tcc pcc - version: 1.0 - - name: Setup MSVC uses: aminya/setup-cpp@v1 if: ${{ contains(matrix.os, 'windows') }} @@ -76,7 +69,7 @@ jobs: - name: Run tests (linux) if: ${{ contains(matrix.os, 'ubuntu') }} - run: make cp_test${{ (matrix.os != 'ubuntu-latest' && '_auto') || '' }} COV=true + run: make cp_test COV=true - name: Run tests (windows) if: ${{ contains(matrix.os, 'windows') }}