From 86cfbeb72bb3372204bab4dbc381ead13184c229 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 25 Sep 2024 19:38:38 -0700 Subject: [PATCH] Remove gcc 14 job for now since its not in ubuntu yet --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d69b13f..4e8b248e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,12 @@ jobs: steps: - uses: actions/checkout@v1 - - name: switch to gcc-14 on linux - run: | - sudo apt install gcc-14 g++-14 - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100 --slave /usr/bin/g++ g++ /usr/bin/g++-14 --slave /usr/bin/gcov gcov /usr/bin/gcov-14 - sudo update-alternatives --set gcc /usr/bin/gcc-14 +# Future consideration. Would be nice if this could be matrixed... alternatively could have different CI's for different gcc versions, if we end up caring about that... +# - name: switch to gcc-10 on linux +# run: | +# sudo apt install gcc-10 g++-10 +# sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 +# sudo update-alternatives --set gcc /usr/bin/gcc-10 - name: Install ck run: sudo apt-get install libck-dev - name: make runtime