Skip to content

Improve CD jobs

Improve CD jobs #51

Workflow file for this run

# CI NetBSD GitHub Actions workflow for monolith
name: CI (NetBSD)
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'assets/'
- 'dist/'
- 'snap/'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
- 'monolith.nuspec'
- 'README.md'
jobs:
build_and_test:
runs-on: ubuntu-latest
name: Test with musl
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Prepare cross-platform environment
run: |
rustup target add x86_64-unknown-linux-musl
- name: Build the executable
run: cargo build --release --target=x86_64-unknown-linux-musl