This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
Update to latest upstream code #16
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: Rust | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "ibc-rollup" ] | |
pull_request: | |
branches: [ "ibc-rollup" ] | |
jobs: | |
nix-build: | |
runs-on: ubuntu-latest | |
environment: CI | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v25 | |
with: | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: informal-sovereign | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Run Nix Build | |
run: | | |
nix build .#rollup .#celestia-app .#celestia-node |