Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Tests working, fixed send_remote_signal
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed May 31, 2024
1 parent ca81f40 commit 803471c
Show file tree
Hide file tree
Showing 6 changed files with 105 additions and 100 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/build-and-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,27 @@ jobs:
name: darksoil-studio

- name: Install and test
env:
CACHIX_AUTH_TOKEN: "${{ secrets.DARKSOIL_CACHIX_AUTH_TOKEN }}"
run: |
nix develop --command bash -c "pnpm i && pnpm t && pnpm -F @darksoil-studio/notifications build"
cachix watch-exec darksoil-studio -- nix develop --accept-flake-config --command bash -c "pnpm i && pnpm t && pnpm -F @darksoil-studio/notifications build"
- name: Build zomes
env:
CACHIX_AUTH_TOKEN: "${{ secrets.DARKSOIL_CACHIX_AUTH_TOKEN }}"
run: |
nix build -L .#notifications_integrity
cachix push darksoil-studio $(nix path-info .#notifications_integrity)
cachix pin darksoil-studio notifications_integrity_debug $(nix path-info .#notifications_integrity)
nix build --accept-flake-config -L .#notifications_integrity
cachix push darksoil-studio $(nix path-info --accept-flake-config .#notifications_integrity)
cachix pin darksoil-studio notifications_integrity_debug $(nix path-info --accept-flake-config .#notifications_integrity)
nix build -L .#notifications_integrity.meta.release
cachix push darksoil-studio $(nix path-info .#notifications_integrity.meta.release)
cachix pin darksoil-studio notifications_integrity $(nix path-info .#notifications_integrity.meta.release)
nix build --accept-flake-config -L .#notifications_integrity.meta.release
cachix push darksoil-studio $(nix path-info --accept-flake-config .#notifications_integrity.meta.release)
cachix pin darksoil-studio notifications_integrity $(nix path-info --accept-flake-config .#notifications_integrity.meta.release)
nix build -L .#notifications
cachix push darksoil-studio $(nix path-info .#notifications)
cachix pin darksoil-studio notifications_debug $(nix path-info .#notifications)
nix build --accept-flake-config -L .#notifications
cachix push darksoil-studio $(nix path-info --accept-flake-config .#notifications)
cachix pin darksoil-studio notifications_debug $(nix path-info --accept-flake-config .#notifications)
nix build -L .#notifications.meta.release
cachix push darksoil-studio $(nix path-info .#notifications.meta.release)
cachix pin darksoil-studio notifications$(nix path-info .#notifications.meta.release)
nix build --accept-flake-config -L .#notifications.meta.release
cachix push darksoil-studio $(nix path-info --accept-flake-config .#notifications.meta.release)
cachix pin darksoil-studio notifications $(nix path-info --accept-flake-config .#notifications.meta.release)
120 changes: 60 additions & 60 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 803471c

Please sign in to comment.