Skip to content

Commit

Permalink
ci: switch to zeta-chain release
Browse files Browse the repository at this point in the history
  • Loading branch information
fbac committed Jul 26, 2024
1 parent 5a8fd10 commit 09b604c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"

test-unit-cover:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- uses: cachix/cachix-action@v15
with:
name: ethermint
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand All @@ -117,7 +117,7 @@ jobs:

upload-cache:
if: github.event_name == 'push'
needs: ["integration_tests"]
needs: ['integration_tests']
strategy:
matrix:
os: [macos-latest]
Expand All @@ -128,6 +128,6 @@ jobs:
- uses: cachix/cachix-action@v15
with:
name: ethermint
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- name: 'instantiate integration test env'
run: nix-store -r "$(nix-instantiate tests/integration_tests/shell.nix)"
8 changes: 4 additions & 4 deletions tests/integration_tests/configs/upgrade-test-package.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
let
pkgs = import ../../../nix { };
fetchEthermint = rev: builtins.fetchTarball "https://github.com/evmos/ethermint/archive/${rev}.tar.gz";
released = pkgs.buildGo118Module rec {
fetchEthermint = rev: builtins.fetchTarball "https://github.com/zeta-chain/ethermint/archive/${rev}.tar.gz";
released = pkgs.buildGo119Module rec {
name = "ethermintd";
src = fetchEthermint "d29cdad6e667f6089dfecbedd36bb8d3a2a7d025";
src = fetchEthermint "5db67f17e6a0a87ea580841be0266f898e3d63d9";
subPackages = [ "cmd/ethermintd" ];
vendorSha256 = "sha256-cQAol54b6hNzsA4Q3MP9mTqFWM1MvR5uMPrYpaoj3SY=";
vendorSha256 = "sha256-6EHCw0/Lo1JfDOEfsn/NufRco0zgebCo0hwwm5wJoFU=";
doCheck = false;
};
current = pkgs.callPackage ../../../. { };
Expand Down

0 comments on commit 09b604c

Please sign in to comment.