Skip to content

Build for MUSL

Build for MUSL #4

Workflow file for this run

name: Build for MUSL
on: workflow_dispatch
defaults:
run:
# necessary for windows
shell: bash
jobs:
build-artifacts:
strategy:
matrix:
include:
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
runs-on: ${{ matrix.os }}
permissions:
contents: read
id-token: write
env:
archive_name: rhai-test
steps:
- uses: jirutka/setup-alpine@v1
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }}
with:
shell-name: alpine.sh
- uses: actions/checkout@v4
with:
ref: ${{ needs.prepare-release.outputs.sha }}
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: ${{ matrix.target }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install MUSL tools
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }}
run: sudo apt-get update && sudo apt-get install -y musl-tools
shell: alpine.sh {0}
- name: Build
run: cargo build --release --target ${{ matrix.target }}
shell: alpine.sh {0}
#env:
# V8_FROM_SOURCE: ${{ matrix.target == 'x86_64-unknown-linux-musl' && 'true' || 'false' }}