Skip to content

Commit

Permalink
ci.yml: Use the default version of gcc/g++.
Browse files Browse the repository at this point in the history
  • Loading branch information
schwehr committed Aug 1, 2024
1 parent d738df7 commit bddfad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Add required sources and pkgs
run: |
sudo add-apt-repository --update --yes 'deb http://archive.ubuntu.com/ubuntu/ bionic main universe'
sudo apt-get install gcc-6 g++-6
sudo apt-get install gcc g++
- name: Checkout repo
uses: actions/checkout@v2
Expand All @@ -46,5 +46,5 @@ jobs:

- name: Script
run: |
(cd src && CC=gcc-6 CXX=g++-6 make -f Makefile-custom -j 4 test)
(cd src && CC=gcc CXX=g++ make -f Makefile-custom -j 4 test)
py.test ais test --cov=ais --cov-report term-missing

0 comments on commit bddfad4

Please sign in to comment.