-
Notifications
You must be signed in to change notification settings - Fork 7
121 lines (102 loc) · 2.78 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: CI
on:
push:
branches:
- 'dev/'
- '!main'
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
rust:
- stable
- beta
# MSRV
- 1.52.1
experimental: [false]
cargo_flags: ['',--all-features]
include:
# Stop breakages in nightly to fail the workflow
- rust: nightly
experimental: true
cargo_flags: --all-features
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
components: rustfmt
target: wasm32-unknown-unknown
override: true
- uses: actions-rs/cargo@v1
- uses: actions-rs/[email protected]
with:
crate: wasm-snip
version: latest
- name: Installing binaryen
run: sudo apt-get install binaryen
- name: Building application
run: make build
# dependent job added to run after build if it succeeds
integration:
needs: build
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
rust:
- stable
experimental: [false]
cargo_flags: [--all-features]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
components: rustfmt
target: wasm32-unknown-unknown
override: true
- uses: actions-rs/cargo@v1
- uses: actions-rs/[email protected]
with:
crate: wasm-snip
version: latest
- name: Installing binaryen
run: sudo apt-get install binaryen
- name: Setting up golang
uses: actions/setup-go@v2
with:
go-version: '1.16.0'
- name: Installing dependencies
run: |
go version
go get -u golang.org/x/lint/golint
go get github.com/stretchr/testify
# Run gofmt to check the formatting of the go files.
- name: Run Fmt
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
# Run vet & lint on the code
- name: Run vet & lint
run: |
go vet ./...
golint -set_exit_status=1 ./...
- name: Building application
run: make build CACHE_EXTRA_ARGS=--all-features
- name: Running Integration tests
run: make integration