File tree 1 file changed +26
-3
lines changed
1 file changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,18 @@ jobs:
15
15
build :
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - name : Checkout
19
+ uses : actions/checkout@v3
19
20
20
21
- name : Build
21
22
run : ./build-in-docker.sh
22
23
24
+ - name : Upload binary
25
+ uses : actions/upload-artifact@v3
26
+ with :
27
+ name : sweat-jar
28
+ path : res/sweat_jar.wasm
29
+
23
30
unit-tests :
24
31
needs : [ build ]
25
32
runs-on : ubuntu-latest
@@ -33,15 +40,31 @@ jobs:
33
40
needs : [ build ]
34
41
runs-on : ubuntu-latest
35
42
steps :
36
- - uses : actions/checkout@v3
37
-
43
+ - name : Checkout
44
+ uses : actions/checkout@v3
45
+
46
+ - name : Download binary
47
+ uses : actions/download-artifact@v3
48
+ with :
49
+ name : sweat-jar
50
+ path : res/sweat_jar.wasm
51
+
38
52
- name : Integration tests
39
53
run : cargo run -p integration-tests
40
54
41
55
push :
42
56
needs : [ unit-tests, integration-tests ]
43
57
runs-on : ubuntu-latest
44
58
steps :
59
+ - name : Checkout
60
+ uses : actions/checkout@v3
61
+
62
+ - name : Download binary
63
+ uses : actions/download-artifact@v3
64
+ with :
65
+ name : sweat-jar
66
+ path : res/sweat_jar.wasm
67
+
45
68
- name : Commit & Push changes
46
69
uses : actions-js/push@master
47
70
with :
You can’t perform that action at this time.
0 commit comments