We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b194c commit bd45794Copy full SHA for bd45794
.github/workflows/main.yml
@@ -108,6 +108,30 @@ jobs:
108
run: ./y.rs test
109
110
111
+ # This job doesn't use cg_clif in any way. It checks that all cg_clif tests work with cg_llvm too.
112
+ test_llvm:
113
+ runs-on: ubuntu-latest
114
+ timeout-minutes: 60
115
+
116
+ defaults:
117
+ run:
118
+ shell: bash
119
120
+ steps:
121
+ - uses: actions/checkout@v3
122
123
+ - name: Prepare dependencies
124
+ run: ./y.rs prepare
125
126
+ - name: Disable JIT tests
127
+ run: |
128
+ sed -i 's/jit./#jit./' config.txt
129
130
+ - name: Test
131
+ env:
132
+ TARGET_TRIPLE: x86_64-unknown-linux-gnu
133
+ run: ./y.rs test --use-backend llvm
134
135
bench:
136
runs-on: ubuntu-latest
137
timeout-minutes: 60
0 commit comments