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 7e13796 commit 377bb4bCopy full SHA for 377bb4b
.github/workflows/build.yml
@@ -153,7 +153,11 @@ jobs:
153
if: ${{ always() && needs.source.outputs.sourcepkg }}
154
runs-on: ubuntu-22.04
155
timeout-minutes: 60
156
- name: Build for webassembly
+ name: Build R-${{ matrix.r }} for WASM
157
+ strategy:
158
+ fail-fast: false
159
+ matrix:
160
+ r: [ 'oldrel' 'release' ]
161
steps:
162
# - name: "Restore package library"
163
# uses: actions/cache/restore@v4
@@ -167,8 +171,9 @@ jobs:
167
171
name: package-source
168
172
path: .
169
173
- id: build
174
+ if: ${{ matrix.r == 'oldrel' }}
170
175
name: Build wasm binary
- uses: r-universe-org/build-wasm@master
176
+ uses: r-universe-org/build-wasm@oldrel
177
with:
178
sourcepkg: ${{ needs.source.outputs.sourcepkg }}
179
env:
0 commit comments