Remove gcc 14 job for now since its not in ubuntu yet

This commit is contained in:
Justin Ethier 2024-09-25 19:38:38 -07:00
parent 49f1599107
commit 86cfbeb72b

View file

@ -13,11 +13,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: switch to gcc-14 on linux # 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...
run: | # - name: switch to gcc-10 on linux
sudo apt install gcc-14 g++-14 # run: |
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 apt install gcc-10 g++-10
sudo update-alternatives --set gcc /usr/bin/gcc-14 # 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 - name: Install ck
run: sudo apt-get install libck-dev run: sudo apt-get install libck-dev
- name: make runtime - name: make runtime