Skip to content

Commit 83d9417

Browse files
committed
Add github action for building all variants
1 parent 02c55f9 commit 83d9417

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/compile.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Compile targets
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
pull_request:
8+
branches:
9+
- '*'
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
config: [
19+
all
20+
]
21+
22+
container:
23+
image: igormisic/improject:v1.0.2
24+
options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined
25+
steps:
26+
- uses: actions/checkout@v2
27+
with:
28+
token: ${{ secrets.GITHUB_TOKEN }}
29+
submodules: 'true'
30+
31+
- name: make ${{matrix.config}}
32+
run: make ${{matrix.config}}

0 commit comments

Comments
 (0)