VID task and exchange #825
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: Build Workflow for ARM | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
pull_request: | |
branches: | |
- 'main' | |
- '*/*' | |
- 'develop' | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [self-hosted, arm64] | |
container: | |
image: ghcr.io/espressosystems/nix:main | |
volumes: | |
- github_nix:/nix | |
steps: | |
- uses: styfle/cancel-workflow-action@0.12.0 | |
name: Cancel Outdated Builds | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: espresso-systems-private | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
# sanity check that repository builds with nix | |
- name: Build | |
run: | | |
nix develop -c just async_std build |