File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 69
69
with :
70
70
toolchain : stable
71
71
target : ${{ matrix.job.target }}
72
- override : true
73
- profile : minimal
74
72
75
73
- name : Show version information (Rust, cargo, GCC)
76
74
run : |
@@ -150,7 +148,7 @@ jobs:
150
148
echo "LIB_FINAL_NAME=${LIB_FINAL_NAME}.tar.gz" >> $GITHUB_OUTPUT
151
149
152
150
- name : " Artifact upload"
153
- uses : actions/upload-artifact@v2
151
+ uses : actions/upload-artifact@v3
154
152
with :
155
153
name : ${{ steps.rename.outputs.LIB_FINAL_NAME }}
156
154
path : ${{ steps.rename.outputs.LIB_FINAL_PATH }}
Original file line number Diff line number Diff line change @@ -9,6 +9,16 @@ defmodule Wasmex.Native do
9
9
otp_app: :wasmex ,
10
10
base_url: "#{ github_url } /releases/download/v#{ version } " ,
11
11
version: version ,
12
+ targets: ~w(
13
+ aarch64-apple-darwin
14
+ aarch64-unknown-linux-gnu
15
+ aarch64-unknown-linux-musl
16
+ x86_64-apple-darwin
17
+ x86_64-unknown-linux-gnu
18
+ x86_64-unknown-linux-musl
19
+ x86_64-pc-windows-msvc
20
+ x86_64-pc-windows-gnu
21
+ ) ,
12
22
force_build: System . get_env ( "WASMEX_BUILD" ) in [ "1" , "true" ]
13
23
14
24
def engine_new ( _engine_config ) , do: error ( )
You can’t perform that action at this time.
0 commit comments