Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Nov 23, 2023
1 parent e697bb4 commit ab5c1a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,22 +49,22 @@ jobs:
run: |
hg clone https://hg.mozilla.org/projects/nspr "$NSPR_DIR"
git clone --depth=1 https://github.com/nss-dev/nss "$NSS_DIR"
if [ "${{runner.os}}" == "Windows" ]; then
export OS_TARGET=WIN95
fi
"$NSS_DIR"/build.sh -v
env:
NSS_DIR: ${{ github.workspace }}/nss
NSPR_DIR: ${{ github.workspace }}/nspr
OS_TARGET: ${{ runner.os == 'Windows' && 'WIN95' || '' }}"

- name: Checkout
uses: actions/checkout@v4

- name: Build
# shell: bash
run: cargo +${{ matrix.rust-toolchain }} build -v --tests
run: cargo +${{ matrix.rust-toolchain }} build -v --all-targets
env:
MOZILLABUILD: "C:/mozilla-build"
MOZBUILD_STATE_PATH: ${{ github.workspace }}/.mozbuild
OS_TARGET: ${{ runner.os == 'Windows' && 'WIN95' || '' }}"

- name: Run tests
run: cargo +${{ matrix.rust-toolchain }} test -v
Expand Down

0 comments on commit ab5c1a9

Please sign in to comment.