File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- name : Build
19
19
run : cargo build --verbose
20
20
- name : Run tests
39
39
40
40
- name : SSH, Pull, and Build Main and Examples
41
41
run : |
42
- ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} -p ${{ secrets.SSH_PORT || 22 }} "cd $HOME /ww-rs && make build examples"
42
+ ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} -p ${{ secrets.SSH_PORT || 22 }} "cd ~ /ww-rs && git checkout master && git pull && make build examples"
Original file line number Diff line number Diff line change
1
+ .PHONY : clean examples
2
+ WASM_EXAMPLES := examples/wasm
3
+
4
+ all : clean build examples
5
+
6
+ build :
7
+ cargo build --release
8
+
9
+ clean :
10
+ rm -rf target
11
+
12
+ examples :
13
+ @cd $(WASM_EXAMPLES ) /echo; make
You can’t perform that action at this time.
0 commit comments