Skip to content

Merge pull request #124 from EspressoSystems/feat/timestamps #65

Merge pull request #124 from EspressoSystems/feat/timestamps

Merge pull request #124 from EspressoSystems/feat/timestamps #65

Workflow file for this run

name: Nix
on:
push:
branches:
- main
- release-*
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
jobs:
nix:
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- name: Configure Git
run: |
git config --global url."https://ancient123:${{ secrets.ORG_GITHUB_PAT }}@github.com/".insteadOf git://github.com/
git config --global url."https://ancient123:${{ secrets.ORG_GITHUB_PAT }}@github.com/".insteadOf ssh://[email protected]/
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v21
# - uses: cachix/cachix-action@v12
# with:
# name: espresso-systems-private
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Cache cargo
uses: actions/[email protected]
with:
path: |
~/.cargo-nix/registry/index
~/.cargo-nix/registry/cache
~/.cargo-nix/git
target
key: espresso-nix-v2-${{ hashFiles('Cargo.lock') }}
- name: "Sanity Check: nix environment loads"
run: nix-shell --run "echo Success"
- name: "Sanity Check: nix environment builds all targets"
run: nix-shell --run "cargo build --all-targets --all-features --release --workspace"