File tree Expand file tree Collapse file tree 2 files changed +10
-107
lines changed Expand file tree Collapse file tree 2 files changed +10
-107
lines changed Original file line number Diff line number Diff line change @@ -49,19 +49,10 @@ jobs:
49
49
# `llvm-14-tools` is needed to install the `FileCheck` binary which is used for asm tests.
50
50
run : sudo apt-get install ninja-build ripgrep llvm-14-tools
51
51
52
- - name : Download artifact
53
- run : curl -LO https://github.com/antoyo/gcc/releases/latest/download/gcc-13.deb
54
-
55
- - name : Setup path to libgccjit
56
- run : |
57
- sudo dpkg --force-overwrite -i gcc-13.deb
58
- echo 'gcc-path = "/usr/lib/"' > config.toml
59
-
60
52
- name : Set env
61
53
run : |
62
54
echo "workspace="$GITHUB_WORKSPACE >> $GITHUB_ENV
63
- echo "LIBRARY_PATH=/usr/lib" >> $GITHUB_ENV
64
- echo "LD_LIBRARY_PATH=/usr/lib" >> $GITHUB_ENV
55
+ echo 'download-gccjit = true' > config.toml
65
56
66
57
# - name: Cache rust repository
67
58
# # We only clone the rust repository for rustc tests
78
69
# TODO: remove --features master when it is back to the default.
79
70
./y.sh build --features master
80
71
# TODO: remove --features master when it is back to the default.
72
+
73
+ - name : Set env (part 2)
74
+ run : |
75
+ # Set the `LD_LIBRARY_PATH` and `LIBRARY_PATH` env variables...
76
+ echo "LD_LIBRARY_PATH="$(./y.sh info | grep -v Using) >> $GITHUB_ENV
77
+ echo "LIBRARY_PATH="$(./y.sh info | grep -v Using) >> $GITHUB_ENV
78
+
79
+ - name : Build (part 2)
80
+ run : |
81
81
cargo test --features master
82
82
./y.sh clean all
83
83
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments