File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
- uses : dtolnay/rust-toolchain@stable
17
17
with :
18
- targets : i686-pc-windows-msvc
18
+ targets : i686-pc-windows-msvc, x86_64-pc-windows-msvc
19
19
components : rustfmt, clippy
20
20
21
21
- uses : Swatinem/rust-cache@v2
29
29
- name : Build (release) (all features)
30
30
run : cargo build --target i686-pc-windows-msvc --features all --locked --release
31
31
32
+ - name : Build 64 (release) (all features)
33
+ run : cargo build --target x86_64-pc-windows-msvc --features all --locked --release
34
+
32
35
- uses : actions/upload-artifact@v4
33
36
with :
34
37
name : Windows Build
37
40
target/i686-pc-windows-msvc/release/rust_g.pdb
38
41
target/rust_g.dm
39
42
43
+ - uses : actions/upload-artifact@v4
44
+ with :
45
+ name : Windows Build 64
46
+ path : |
47
+ target/x86_64-pc-windows-msvc/release/rust_g.dll
48
+ target/x86_64-pc-windows-msvc/release/rust_g.pdb
49
+ target/rust_g.dm
50
+
40
51
build-linux :
41
52
runs-on : ubuntu-latest
42
53
env :
Original file line number Diff line number Diff line change @@ -50,6 +50,3 @@ pub mod unzip;
50
50
pub mod url;
51
51
#[ cfg( feature = "worleynoise" ) ]
52
52
pub mod worleynoise;
53
-
54
- #[ cfg( not( target_pointer_width = "32" ) ) ]
55
- compile_error ! ( "rust-g must be compiled for a 32-bit target" ) ;
You can’t perform that action at this time.
0 commit comments