-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (46 loc) · 1.31 KB
/
ci.yml
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
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "**"
jobs:
get-webrpc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install webrpc-gen
run: |
curl -o ./webrpc-gen -fLJO https://github.com/webrpc/webrpc/releases/download/v0.18.0/webrpc-gen.linux-amd64
chmod +x ./webrpc-gen
echo $PWD >> $GITHUB_PATH
webrpc-tests:
runs-on: ubuntu-latest
strategy:
matrix:
webrpc-version: [v0.18.0]
dart-version: [3.1]
steps:
- uses: actions/checkout@v3
- name: Set up webrpc binary cache folder
uses: actions/cache@v3
with:
key: webrpc-binaries
path: tests/.tmp
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.dart-version }}
- name: Download webrpc binaries
working-directory: ./tests
run: ./scripts/download.sh ${{ matrix.webrpc-version }} .tmp/
- name: Export path of webrpc binaries
working-directory: ./tests
run: echo "$PWD/.tmp" >> $GITHUB_PATH
- name: Install Dart dependencies
working-directory: ./tests
run: dart pub get
- name: Run interoperability tests
working-directory: ./tests
run: ./scripts/test.sh