-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from neighbour-hoods/hc-sandbox-gen-ci-check
add CI hc sandbox generation check
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,24 @@ jobs: | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
- run: nix develop --impure --command cargo fmt -- --check | ||
|
||
confirm_hc_sandbox_generation_success: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: cachix/install-nix-action@v17 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.8.1/install | ||
extra_nix_config: | | ||
trusted-public-keys = cache.holo.host-1:lNXIXtJgS9Iuw4Cu6X0HINLu9sTfcjEntnrgwMQIMcE= cache.holo.host-2:ZJCkX3AUYZ8soxTLfTb60g+F3MkWD7hkH9y8CgqwhDQ= holochain-ci.cachix.org-1:5IUSkZc0aoRS53rfkvH9Kid40NpyjwCMCzwRTXy+QN8= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | ||
substituters = https://cache.holo.host https://holochain-ci.cachix.org https://cache.nixos.org/ | ||
- uses: cachix/cachix-action@v10 | ||
with: | ||
name: neighbourhoods | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
- run: nix develop --impure --command npm run hc:build | ||
- run: nix develop --impure --command npm run hc:pack | ||
- run: nix develop --impure --command hc sandbox generate happs/social_sensemaker | ||
|
||
social_sensemaker-naersk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|