Skip to content

Commit 11dfeaa

Browse files
committed
initial gcc zoo
1 parent 23078c8 commit 11dfeaa

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/gcc-zoo.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: gcc
2+
3+
on:
4+
push:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
compilation:
11+
name: gcc-${{ matrix.gcc }}
12+
runs-on: ubuntu-latest
13+
container:
14+
image: gcc:${{ matrix.gcc }}
15+
strategy:
16+
matrix:
17+
gcc: [5.2, 6.4, 7.4, 8.1, 12]
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: make
21+
run: make ERR=1 TARGET=linux-glibc USE_OPENSSL=1

0 commit comments

Comments
 (0)