don't fail for envs that still used old format (#2476) #417
Workflow file for this run
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: 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 |