File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 51
51
export COMPILE_RUNS=2
52
52
export RUN_RUNS=2
53
53
54
- ./test.sh --release
54
+ ./test.sh
55
+
56
+ - name : Package prebuilt cg_clif
57
+ run : tar cvfJ cg_clif.tar.xz build
58
+
59
+ - name : Upload prebuilt cg_clif
60
+ uses : actions/upload-artifact@v2
61
+ with :
62
+ name : cg_clif-${{ runner.os }}
63
+ path : cg_clif.tar.xz
Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ $ ./test.sh
25
25
This will implicitly build cg_clif too. Both ` build.sh ` and ` test.sh ` accept a ` --debug ` argument to
26
26
build in debug mode.
27
27
28
+ Alternatively you can download a pre built version from [ GHA] . It is listed in the artifacts section
29
+ of workflow runs. Unfortunately due to GHA restrictions you need to be logged in to access it.
30
+
31
+ [ GHA ] : https://github.com/bjorn3/rustc_codegen_cranelift/actions?query=branch%3Amaster+event%3Apush+is%3Asuccess
32
+
28
33
## Usage
29
34
30
35
rustc_codegen_cranelift can be used as a near-drop-in replacement for ` cargo build ` or ` cargo run ` for existing projects.
You can’t perform that action at this time.
0 commit comments