Skip to content

Merge branch 'main' of github.com:threefoldtech/zos into development_… #410

Merge branch 'main' of github.com:threefoldtech/zos into development_…

Merge branch 'main' of github.com:threefoldtech/zos into development_… #410

Workflow file for this run

name: Bootstrap Tests
on:
push:
paths:
- "bootstrap/bootstrap/**"
- ".github/workflows/test-bootstrap.yaml"
jobs:
bootstrap:
name: Running Bootstrap Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Prepare musl
run: |
sudo apt-get update
sudo apt-get install -y musl musl-tools
- name: Setup toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Test bootstrap
run: make test
working-directory: bootstrap/bootstrap
- name: Build bootstrap
run: make release
working-directory: bootstrap/bootstrap