File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ jobs:
13
13
- nightly
14
14
os :
15
15
- ubuntu-latest
16
- - macOS -latest
16
+ - macos -latest
17
17
- windows-latest
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
20
20
- name : Install needed libraries
21
21
if : matrix.os == 'ubuntu-latest'
22
- run : sudo apt install libudev-dev pkg-config libxkbcommon-dev libvulkan-dev
22
+ run : sudo apt install libudev-dev pkg-config libxkbcommon-dev libvulkan-dev
23
23
- name : Checkout source code
24
24
uses : actions/checkout@v2
25
25
- name : Install Rust ${{ matrix.toolchain }} toolchain
29
29
override : true
30
30
profile : minimal
31
31
- name : Build on Rust ${{ matrix.toolchain }}
32
- run : cargo build --verbose --color always
32
+ if : matrix.os != 'macos-latest' || matrix.toolchain != 'nightly' && matrix.toolchain != 'beta'
33
+ run : cargo build --release --verbose --color always
33
34
- name : Test on Rust ${{ matrix.toolchain }}
34
- run : cargo test --verbose --color always
35
+ if : matrix.os != 'macos-latest' || matrix.toolchain != 'nightly' && matrix.toolchain != 'beta'
36
+ run : cargo test --release --verbose --color always
35
37
36
38
rustfmt_check :
37
39
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments