Bump commit from 5f1c28f
to 737c5b2
(#1956)
#1537
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 with Nix Workflow | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
- 'nix*' | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
nix-build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Nix Caching | |
uses: cachix/cachix-action@v12 | |
with: | |
name: espresso-systems-private | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
skipPush: ${{ github.actor == 'dependabot[bot]' }} | |
- name: Enable Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: ". -> target_dirs/nix_rustc" | |
# sanity check that repository builds with nix | |
- name: Initialize Nix Environment | |
run: | | |
nix develop -c echo Nix Setup Complete | |
# sanity check that repository builds with nix | |
- name: Build | |
run: | | |
nix develop -c just async_std build |