-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 834 Bytes
/
build.yml
File metadata and controls
35 lines (32 loc) · 834 Bytes
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
on:
workflow_dispatch:
name: Build
jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: move Archive
run: |
echo "test"
cp -r term target/release
cp -r arch target/release
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-v86-wasi
path: |
target/release
!target/release/build
!target/release/deps
!target/release/examples
!target/release/incremental