Skip to content

Commit

Permalink
Merge pull request #118 from kaspar030/ci_add_gcc_builds
Browse files Browse the repository at this point in the history
CI: add gcc builds
  • Loading branch information
kaspar030 authored Feb 23, 2022
2 parents d4459c3 + 9597654 commit e1a5e6a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
container:
- silkeh/clang:12
- silkeh/clang:13
- gcc:10
- gcc:11
crypto:
- sodium
- monocypher
Expand Down Expand Up @@ -41,9 +43,12 @@ jobs:
- container: silkeh/clang:12
CC: clang

- container: silkeh/clang:13
CC: clang
- container: gcc:10
CC: gcc
- container: gcc:11
CC: gcc

container: ${{ matrix.container }}
env:
Expand All @@ -55,7 +60,7 @@ jobs:
- uses: actions/checkout@v2

- name: install packages
run: apt update && apt install -y libgcc-10-dev build-essential pkg-config libcunit1-dev wget libsodium-dev libmbedtls-dev ca-certificates meson ninja-build
run: apt update && apt install -y build-essential pkg-config libcunit1-dev wget libsodium-dev libmbedtls-dev ca-certificates meson ninja-build

- name: clone nanocbor
run: git clone https://github.com/bergzand/nanocbor/ ../nanocbor
Expand Down

0 comments on commit e1a5e6a

Please sign in to comment.