-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (38 loc) · 1.17 KB
/
Copy pathrust.yml
File metadata and controls
52 lines (38 loc) · 1.17 KB
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
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: egor-tensin/vs-shell@v2
if: ${{ runner.os == 'Windows' }}
- run: rustup default nightly
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose --release
- name: Strip
if: ${{ runner.os != 'Windows' }}
run: strip ${{ github.workspace }}/target/release/sdftool
- name: Test Executable File
run: ${{ github.workspace }}/target/release/sdftool
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.4
with:
name: SDFTool for ${{ runner.os }}
path: |
${{ github.workspace }}/target/release/sdftool
${{ github.workspace }}/target/release/sdftool.exe
${{ github.workspace }}/target/release/OpenCL.dll