Skip to content

Commit

Permalink
CI update
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Mar 12, 2021
1 parent babda34 commit 20edb8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-scripts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,21 @@ jobs:

- os: ubuntu-16.04
cmp: gcc-4.8
utoolchain: true
utoolchain: "4.8"
configuration: default
base: "7.0"
name: "7.0 Ub-16 gcc-4.8"

- os: ubuntu-16.04
cmp: gcc-4.9
utoolchain: true
utoolchain: "4.9"
configuration: default
base: "7.0"
name: "7.0 Ub-16 gcc-4.9"

- os: ubuntu-20.04
cmp: gcc-8
utoolchain: true
utoolchain: "8"
configuration: default
base: "7.0"
name: "7.0 Ub-20 gcc-8"
Expand Down Expand Up @@ -144,18 +144,19 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache
key: ${{ matrix.base }}/${{ matrix.os }}/${{ matrix.cmp }}/${{ matrix.configuration }}/${{ matrix.wine }}${{ matrix.rtems }}/${{ matrix.extra }}
key: ${{ matrix.base }}/${{ matrix.os }}/${{ matrix.cmp }}/${{ matrix.configuration }}/${{ matrix.wine }}${{ matrix.rtems }}/${{ matrix.extra }}/${{ hashFiles('.github/workflows/ci-scripts-build.yml') }}
- name: "apt-get install"
run: |
sudo apt-get update
sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb
if: runner.os == 'Linux'
- name: "apt-get install ${{ matrix.cmp }}"
- name: "apt-get install gcc-${{ matrix.utoolchain }}"
run: |
sudo apt-get update
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get -y install ${{ matrix.cmp }}
sudo apt-get -y install g++-${{ matrix.utoolchain }}
if: matrix.utoolchain
- name: Prepare and compile dependencies
run: python .ci/cue.py prepare
Expand Down

0 comments on commit 20edb8f

Please sign in to comment.