node-release #7
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: node-release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Choose a release type | |
required: true | |
type: choice | |
options: | |
- prerelease | |
- prepatch | |
- preminor | |
- premajor | |
- patch | |
- minor | |
- major | |
jobs: | |
bump_version: | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: ./ | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.NODE_PRE_GYP_GITHUB_TOKEN }} | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: npm version | |
run: | | |
echo "NPM_VERSION=$(npm version ${{ github.event.inputs.version }} --preid pre --no-git-tag-version)" >> $GITHUB_ENV | |
- name: Push version to git | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git commit -a -m "Update node version to ${{ env.NPM_VERSION }} (${{ github.event.inputs.version }})" | |
git push | |
publish_binaries: | |
runs-on: ${{ matrix.runs-on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- runs-on: ubuntu-22.04 | |
arch: x86_64 | |
- runs-on: macos-12 | |
arch: x86_64 | |
- runs-on: windows-2022 | |
arch: x86_64 | |
needs: bump_version | |
continue-on-error: true | |
env: | |
BUILDTYPE: "Release" | |
defaults: | |
run: | |
working-directory: ./ | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get Latest Version | |
run: git pull | |
- name: Setup submodules | |
shell: bash | |
run: | | |
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | |
git submodule sync --recursive | |
git -c core.longpaths=true -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive || true | |
- name: Get OS Architecture | |
if: runner.os == 'MacOS' || runner.os == 'Linux' | |
run: uname -m | |
- name: Install dependencies (MacOS) | |
if: runner.os == 'MacOS' | |
env: | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
run: | | |
brew list cmake || brew install cmake | |
brew list ccache || brew install ccache | |
brew list ninja || brew install ninja | |
brew list pkg-config || brew install pkg-config | |
brew list glfw || brew install glfw | |
brew list libuv || brew install libuv | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
ccache \ | |
ninja-build \ | |
pkg-config \ | |
xvfb \ | |
libcurl4-openssl-dev \ | |
libglfw3-dev \ | |
libuv1-dev \ | |
g++-12 \ | |
libjpeg-dev \ | |
libpng-dev \ | |
libwebp-dev | |
/usr/sbin/update-ccache-symlinks | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: npm ci | |
run: npm ci --ignore-scripts | |
- name: Set up msvc dev cmd (Windows) | |
if: runner.os == 'Windows' | |
uses: ilammy/msvc-dev-cmd@v1 | |
# Fixes an issue with the image causing builds to fail - https://github.com/actions/runner-images/issues/8598 | |
- name: Remove Strawberry Perl from PATH (Windows) | |
if: runner.os == 'Windows' | |
shell: pwsh | |
run: | | |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", "" | |
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append | |
- name: Setup cmake (Linux) | |
if: runner.os == 'Linux' && matrix.arch != 'arm64' | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: "3.19.x" | |
- name: Set up ccache (MacOS/Linux) | |
if: runner.os == 'MacOS' || runner.os == 'Linux' | |
uses: hendrikmuhs/ccache-action@v1 | |
with: | |
key: ${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }}-${{ github.sha }}-${{ github.head_ref }} | |
restore-keys: | | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }}-${{ github.sha }} | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }} | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }} | |
- name: Set up ccache (Windows) | |
if: runner.os == 'Windows' | |
uses: hendrikmuhs/ccache-action@v1 | |
with: | |
variant: "sccache" | |
key: ${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }}-${{ github.sha }}-${{ github.head_ref }} | |
restore-keys: | | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }}-${{ github.sha }} | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ github.ref }} | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }} | |
- name: Cache cmake-node-module deps | |
uses: actions/cache@v3 | |
with: | |
# downloaded with platform/node/cmake/module.cmake | |
path: build/headers | |
key: ${{ runner.os }}-${{ matrix.arch }}-cmake-node-module-deps | |
- name: Configure maplibre-native (MacOS) | |
if: runner.os == 'MacOS' | |
run: | | |
cmake . -B build \ | |
-G Ninja \ | |
-DCMAKE_BUILD_TYPE=${{ env.BUILDTYPE }} \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DMLN_WITH_NODE=ON | |
- name: Configure maplibre-native (Linux) | |
if: runner.os == 'Linux' | |
shell: bash -leo pipefail {0} | |
run: | | |
cmake . -B build \ | |
-G Ninja \ | |
-DCMAKE_BUILD_TYPE=${{ env.BUILDTYPE }} \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_C_COMPILER=gcc-12 \ | |
-DCMAKE_CXX_COMPILER=g++-12 \ | |
-DMLN_WITH_NODE=ON | |
- name: "Create directory '${{ github.workspace }}/platform/windows/vendor/vcpkg/bincache' (Windows)" | |
if: runner.os == 'Windows' | |
run: mkdir -p ${{ github.workspace }}/platform/windows/vendor/vcpkg/bincache | |
shell: bash | |
- name: Restore vcpkg cache (Windows) | |
if: runner.os == 'Windows' | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ github.workspace }}/platform/windows/vendor/vcpkg | |
!${{ github.workspace }}/platform/windows/vendor/vcpkg/buildtrees | |
!${{ github.workspace }}/platform/windows/vendor/vcpkg/packages | |
!${{ github.workspace }}/platform/windows/vendor/vcpkg/downloads | |
!${{ github.workspace }}/platform/windows/vendor/vcpkg/installed | |
key: | | |
${{ matrix.runs-on }}-${{ env.BUILDTYPE }}-${{ github.job }}-${{ hashFiles( '.git/modules/platform/windows/vendor/vcpkg/HEAD' ) }}-${{ hashFiles( 'platform/windows/Get-VendorPackages.ps1' ) }} | |
- name: Configure maplibre-native (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
cmake . -B build \ | |
-G Ninja \ | |
-DCMAKE_BUILD_TYPE=${{ env.BUILDTYPE }} \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \ | |
-DMLN_WITH_NODE=ON | |
- name: Build maplibre-native (MacOS/Linux) | |
if: runner.os == 'MacOS' || runner.os == 'Linux' | |
run: | | |
cmake --build build -j $(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null) | |
- name: Build maplibre-native (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
cmake --build build | |
- name: Publish X64 Release to Github | |
if: matrix.arch == 'x86_64' | |
env: | |
PUBLISH: true | |
BUILDTYPE: RelWithDebInfo | |
NODE_PRE_GYP_GITHUB_TOKEN: ${{ secrets.NODE_PRE_GYP_GITHUB_TOKEN }} | |
run: | | |
./platform/node/scripts/publish.sh | |
- name: Publish ARM Release to Github | |
if: matrix.arch == 'arm64' | |
env: | |
PUBLISH: true | |
BUILDTYPE: RelWithDebInfo | |
NODE_PRE_GYP_GITHUB_TOKEN: ${{ secrets.NODE_PRE_GYP_GITHUB_TOKEN }} | |
run: | | |
./platform/node/scripts/publish.sh --target_arch=arm64 | |
publish_npm: | |
runs-on: ubuntu-22.04 | |
needs: publish_binaries | |
defaults: | |
run: | |
working-directory: ./ | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get Latest Version | |
run: git pull | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Publish to NPM (release) | |
if: github.ref == 'refs/heads/main' && (github.event.inputs.version == 'patch' || github.event.inputs.version == 'minor' || github.event.inputs.version == 'major') | |
run: | | |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} | |
npm publish --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_ORG_TOKEN }} | |
- name: Publish to NPM (prerelease) | |
if: github.ref == 'refs/heads/main' && (github.event.inputs.version == 'prerelease' || github.event.inputs.version == 'prepatch' || github.event.inputs.version == 'preminor' || github.event.inputs.version == 'premajor') | |
run: | | |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} | |
npm publish --tag next --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_ORG_TOKEN }} |