fix crash with async workers in napi addons #15
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: Build libnode | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [x64] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup alpine | |
uses: jirutka/setup-alpine@v1 | |
if: runner.os != 'Windows' | |
with: | |
branch: v3.16 | |
packages: > | |
git bash binutils-gold curl gnupg libgcc linux-headers make python3 ccache xz libatomic | |
clang clang-dev clang-libs llvm13-dev lld | |
libc-dev musl musl-dev musl-dbg gcc g++ | |
- name: Apply all patches | |
shell: bash | |
working-directory: ./node | |
run: | | |
for f in ../patches/*.patch; do | |
echo "Applying $f..." | |
git apply --reject --whitespace=fix "$f" | |
done | |
- name: Build project | |
if: runner.os != 'Windows' | |
working-directory: ./node | |
shell: alpine.sh {0} | |
run: | | |
export CC="clang" | |
export CXX="clang++" | |
export CXXFLAGS="-g -mssse3 -std=c++20" | |
export LDFLAGS="-m64 -lstdc++ -Wl,--build-id -fuse-ld=lld" | |
./configure --shared | |
make -j4 | |
- name: Install NASM | |
uses: ilammy/setup-nasm@v1 | |
if: runner.os == 'Windows' | |
- name: Ensure MSVC Toolset 14.36.32532 is installed | |
if: runner.os == 'Windows' | |
shell: powershell | |
run: | | |
$vsPath = & '"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"' -latest -property installationPath | |
if (-not $vsPath) { | |
Write-Error "Visual Studio installation not found." | |
exit 1 | |
} | |
$msvcDir = Join-Path $vsPath "VC\Tools\MSVC\14.36.32532" | |
if (-Not (Test-Path $msvcDir)) { | |
Write-Host "MSVC toolset 14.36.32532 not found. Attempting installation..." | |
& "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" modify --installPath $vsPath --add Microsoft.VisualStudio.Component.VC.14.36.17.6.x86.x64 --quiet --wait | |
} else { | |
Write-Host "MSVC toolset 14.36.32532 is already installed." | |
} | |
- name: Build | |
if: runner.os == 'Windows' | |
shell: bash | |
working-directory: ./node | |
run: ./vcbuild.bat release x64 dll no-cctest clang-cl | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libnode-${{ runner.os }}-${{ matrix.arch }} | |
path: ./node/out/Release | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
contents: write | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
${{ github.workspace }}/libnode-Windows-x64/libnode22.dll | |
${{ github.workspace }}/libnode-Windows-x64/libnode22.lib | |
${{ github.workspace }}/libnode-Windows-x64/libnode22.pdb | |
${{ github.workspace }}/libnode-Windows-x64/libuv.dll | |
${{ github.workspace }}/libnode-Windows-x64/libuv.lib | |
${{ github.workspace }}/libnode-Windows-x64/libuv.pdb | |
${{ github.workspace }}/libnode-Linux-x64/libnode22.so | |
${{ github.workspace }}/libnode-Linux-x64/libuv.so | |
- name: Delete artifacts | |
uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: libnode-* | |