Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Nov 28, 2023
1 parent ab19cde commit 186350c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
check:
name: Build & test
strategy:
# fail-fast: false
fail-fast: false
matrix:
# os: [windows-latest] # ubuntu-latest, macos-latest] #
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
rust-toolchain: [1.65.0] #, stable, beta]
runs-on: ${{ matrix.os }}
defaults:
Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
run: |
brew install ninja mercurial gnu-sed
python3 -m pip install gyp-next
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
echo "$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:$PATH"
echo "$(python3 -m site --user-base)/bin" >> "$GITHUB_PATH"
echo "$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin" >> "$GITHUB_PATH"
- name: Install MSYS2 dependencies (Windows)
if: runner.os == 'Windows'
Expand All @@ -62,7 +62,7 @@ jobs:
hg clone https://hg.mozilla.org/projects/nspr "$NSPR_DIR"
git config --global core.autocrlf false
git clone --depth=1 https://github.com/nss-dev/nss "$NSS_DIR"
sed -i'' 's/-w44996//' "$NSS_DIR"/nss/lib/sqlite/Makefile
sed -i'' 's/-w44996//' "$NSS_DIR"/lib/sqlite/Makefile
echo "NSS_DIR=$NSS_DIR" >> "$GITHUB_ENV"
echo "NSPR_DIR=$NSPR_DIR" >> "$GITHUB_ENV"
env:
Expand Down

0 comments on commit 186350c

Please sign in to comment.