Skip to content

Commit

Permalink
Use GNAT 10 and GCC 10 on Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
serock committed Dec 17, 2023
1 parent 6768bdb commit 21c51ea
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

# Oldest supported by Alire+GitHub to increase AppImage back-compatibility
# Unfortunately we depend on the static elaboration model of recent GNATs
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04

steps:
- name: Check out repository
Expand All @@ -27,7 +27,12 @@ jobs:
submodules: true

- name: Install FSF toolchain
run: sudo apt-get install -y gnat gprbuild
run: sudo apt-get install -y gnat-10 gprbuild

- name: Set up gcc on the PATH to be gcc-10
run: |
mkdir -p $HOME/.local/bin
ln -s /usr/bin/gcc-10 $HOME/.local/bin/gcc
- name: Install Python 3.x (required for the testsuite)
uses: actions/setup-python@v2
Expand Down

0 comments on commit 21c51ea

Please sign in to comment.