fix: we cannot pprof in windows (#74) #190
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
# mostly copied from https://raw.githubusercontent.com/web-infra-dev/oxc/main/.github/workflows/release_cli.yml | |
name: release | |
on: | |
push: | |
branches: ["main"] | |
release: | |
types: [created] | |
workflow_dispatch: | |
concurrency: | |
group: "release" | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
code-target: win32-x64 | |
- os: windows-latest | |
target: aarch64-pc-windows-msvc | |
code-target: win32-arm64 | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
code-target: linux-x64 | |
- os: ubuntu-20.04 | |
target: aarch64-unknown-linux-gnu | |
code-target: linux-arm64 | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
code-target: darwin-x64 | |
- os: macos-latest | |
target: aarch64-apple-darwin | |
code-target: darwin-arm64 | |
name: Package ${{ matrix.code-target }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup target add ${{ matrix.target }} | |
- name: Install arm64 toolchain | |
if: matrix.code-target == 'linux-arm64' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc-aarch64-linux-gnu | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: release-${{ matrix.target }} | |
- name: Build Binary | |
# strip debug symbols from std, see https://github.com/johnthagen/min-sized-rust#remove-panic-string-formatting-with-panic_immediate_abort | |
run: cargo build --release --target ${{ matrix.target }} -p hdx | |
env: | |
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc | |
- name: Archive Binary | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
BIN_NAME=hdx-${{ matrix.code-target }} | |
mv target/${{ matrix.target }}/release/hdx.exe $BIN_NAME.exe | |
- name: Archive Binary | |
if: runner.os != 'Windows' | |
run: | | |
BIN_NAME=hdx-${{ matrix.code-target }} | |
mv target/${{ matrix.target }}/release/hdx $BIN_NAME | |
- name: Upload Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
if-no-files-found: error | |
name: binary-${{ matrix.code-target }} | |
path: | | |
hdx-* | |
deploy: | |
env: | |
TAG_NAME: ${{ github.event.release.tag_name || format('0.0.0-canary.{0}', github.SHA) }} | |
DIST_TAG: ${{ github.event.release.tag_name && 'latest' || 'canary' }} | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- run: echo "TAG_NAME=$TAG_NAME"; echo "DIST_TAG=$DIST_TAG" | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
node-version: 18.x | |
cache-dependency-path: ./website/package.json | |
cache: "npm" | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
- name: Move | |
run: mv binary-*/* packages/hdx/bin && chmod +x packages/hdx/bin/* | |
- run: tree | |
- run: npm i | |
working-directory: ./packages/hdx | |
- run: npm version ${TAG_NAME} --no-git-tag-version | |
working-directory: ./packages/hdx | |
- run: npm whoami; npm pub --provenance --tag $DIST_TAG --access public | |
working-directory: ./packages/hdx | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |