This repository was archived by the owner on Sep 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ continuous-integration :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ env :
15+ - library-version : 1.2.0-beta.4
16+ container-runtime-version : 2.2.5
17+ container-runtime : alpine3.9
18+ runtime : alpine-x64
19+ - library-version : 1.2.0-beta.4
20+ container-runtime-version : 2.2.5
21+ container-runtime : alpine3.8
22+ runtime : alpine-x64
23+ - library-version : 1.2.0-beta.4
24+ container-runtime-version : 2.2.5
25+ container-runtime : stretch-slim
26+ runtime : debian.9-x64
27+ - library-version : 1.2.0-beta.4
28+ container-runtime-version : 2.2.5
29+ container-runtime : bionic
30+ runtime : ubuntu.18.04-x64
31+ runs-on : ubuntu-latest
32+ name : continuous-integration/github/${{ matrix.env.container-runtime }}
33+ steps :
34+ - name : filter
35+ if : github.event_name == 'pull_request'
36+ uses : actions/bin/filter@master
37+ with :
38+ action : " opened|synchronize|reopened"
39+ - name : checkout
40+ uses : actions/checkout@master
41+ - name : build
42+ run : " ./build.sh"
43+ env :
44+ LIBRARY_VERSION : ${{ matrix.env.library-version }}
45+ CONTAINER_RUNTIME_VERSION : ${{ matrix.env.container-runtime-version }}
46+ CONTAINER_RUNTIME : ${{ matrix.env.container-runtime }}
47+ RUNTIME : ${{ matrix.env.runtime }}
You can’t perform that action at this time.
0 commit comments