File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,19 @@ jobs:
94
94
args : -p node-rs-bcrypt --lib -- --nocapture
95
95
96
96
- name : Run build
97
+ if : matrix.os != 'macos-latest'
97
98
run : |
98
99
cargo build --release
99
100
npx lerna run build --stream -- --platform
100
101
102
+ - name : Run build
103
+ if : matrix.os == 'macos-latest'
104
+ run : |
105
+ cargo build --release
106
+ npx lerna run build --stream -- --platform
107
+ env :
108
+ MACOSX_DEPLOYMENT_TARGET : ' 10.13'
109
+
101
110
- name : Upload artifact
102
111
uses : actions/upload-artifact@v2
103
112
with :
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ edition = "2018"
8
8
crate-type = [" cdylib" ]
9
9
10
10
[dependencies ]
11
- napi = { version = " 0.4" }
11
+ napi = { version = " 0.4" }
12
12
napi-derive = { version = " 0.4.2" }
13
13
crc32fast = " 1.2"
14
14
You can’t perform that action at this time.
0 commit comments