Skip to content

Commit

Permalink
CI for older gcc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gummif committed Jul 13, 2021
1 parent 142c9d6 commit ff52ae8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@ jobs:
drafts: "OFF"
libzmq: "4.2.0"
libzmqbuild: "pkgconfig"
# gcc 4.8
- os: "ubuntu-18.04"
cppstd: "11"
cc: "gcc-4.8"
cxx: "g++-4.8"
drafts: "ON"
libzmq: "4.3.4"
libzmqbuild: "cmake"
aptinstall: "gcc-4.8 g++-4.8"
# gcc 5
- os: "ubuntu-18.04"
cppstd: "11"
cc: "gcc-5"
cxx: "g++-5"
drafts: "ON"
libzmq: "4.3.4"
libzmqbuild: "cmake"
aptinstall: "gcc-5 g++-5"
# without draft
- os: "ubuntu-latest"
cppstd: "20"
Expand Down Expand Up @@ -51,6 +69,11 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: install_deps
if: matrix.aptinstall
run: sudo apt install ${{matrix.aptinstall}}

- name: get_libzmq
run: |
curl -L https://github.com/zeromq/libzmq/archive/v${{ matrix.libzmq }}.tar.gz \
Expand Down

0 comments on commit ff52ae8

Please sign in to comment.