Deadlock between Watcher and Debounce threads (fix #187) #122
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18, 20] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: ${{matrix.node}} | |
- name: Install watchman | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
wget https://github.com/facebook/watchman/releases/download/v2023.05.01.00/watchman-v2023.05.01.00-macos.zip | |
unzip watchman-*-macos.zip | |
cd watchman-v2023.05.01.00-macos | |
sudo mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman | |
sudo cp bin/* /usr/local/bin | |
sudo cp lib/* /usr/local/lib | |
sudo chmod 755 /usr/local/bin/watchman | |
sudo chmod 2777 /usr/local/var/run/watchman | |
watchman -v | |
- name: Install watchman | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
wget https://github.com/facebook/watchman/releases/download/v2023.06.19.00/watchman-v2023.06.19.00-linux.zip | |
unzip watchman-*-linux.zip | |
cd watchman-v2023.06.19.00-linux | |
sudo mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman | |
sudo cp bin/* /usr/local/bin | |
sudo cp lib/* /usr/local/lib | |
sudo chmod 755 /usr/local/bin/watchman | |
sudo chmod 2777 /usr/local/var/run/watchman | |
- name: Copy watchman | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
Copy-Item -Recurse -Path watchman -Destination $home | |
$env:PATH += ";$home\watchman\windows\bin" | |
Add-Content $env:GITHUB_PATH "$home\watchman\windows\bin" | |
watchman -v | |
- run: yarn --frozen-lockfile | |
- run: yarn test | |
test-freebsd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test in FreeBSD | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: | | |
pkg install -y -f curl node libnghttp2 npm yarn | |
echo "~~~~ node -v ~~~~" | |
node -v | |
echo "~~~~ yarn --version ~~~~" | |
yarn --version | |
run: | | |
yarn --frozen-lockfile | |
yarn test | |
test-wasm: | |
runs-on: ubuntu-latest | |
container: | |
image: emscripten/emsdk | |
steps: | |
- uses: actions/checkout@v3 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: 18 | |
- run: yarn --frozen-lockfile | |
- run: make wasm-debug | |
- run: TEST_WASM=1 yarn test |