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 506ce49 commit c740153Copy full SHA for c740153
.github/workflows/release-check.yml
@@ -34,11 +34,11 @@ jobs:
34
if: ${{ env.RELEASE_TAG == '' }}
35
uses: actions/download-artifact@v4
36
with:
37
- name: libmozjs-${{ matrix.platform.target }}.tar.gz
+ name: libmozjs-${{ matrix.platform.target }}${{ matrix.features && '-debugmozjs' || '' }}.tar.gz
38
- name: Build from archive
39
40
env:
41
- MOZJS_ARCHIVE: libmozjs-${{ matrix.platform.target }}.tar.gz
+ MOZJS_ARCHIVE: libmozjs-${{ matrix.platform.target }}${{ matrix.features && '-debugmozjs' || '' }}.tar.gz
42
run: |
43
cargo build --verbose --features "${{ matrix.features }}"
44
cargo test --tests --examples --verbose --features "${{ matrix.features }}"
0 commit comments