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 ac654c6 commit 9143b04Copy full SHA for 9143b04
.github/workflows/Test.yml
@@ -136,9 +136,22 @@ jobs:
136
137
- name: Test OpenCL.jl
138
uses: julia-actions/julia-runtest@v1
139
+ if: runner.os != 'Windows'
140
with:
141
test_args: '--platform=pocl'
142
143
+ - name: Setup BusyBox
144
+ if: runner.os == 'Windows'
145
+ run: |
146
+ Invoke-WebRequest https://frippery.org/files/busybox/busybox64.exe -OutFile C:\Windows\drop.exe
147
+ - name: Test OpenCL.jl (de-escalated)
148
149
+ shell: drop -c "julia '{0}'"
150
151
+ using Pkg
152
+ Pkg.activate(".")
153
+ Pkg.test(; test_args=`--platform=pocl`)
154
+
155
- uses: julia-actions/julia-processcoverage@v1
156
- uses: codecov/codecov-action@v5
157
0 commit comments