Skip to content

Commit

Permalink
fix nix load path
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 3, 2024
1 parent 38f2fba commit ee5ebf0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/k8s-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Load Nix
run: nix develop -c sh -c "go mod download"
run: nix develop -c sh -c "cd lib &&go mod download"
- name: Setup environment
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
with:
Expand All @@ -89,7 +89,7 @@ jobs:
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
test_command_to_run: |
unset ENV_JOB_IMAGE
nix develop -c sh -c "make k8s_test_e2e_ci"
nix develop -c sh -c "cd lib && make k8s_test_e2e_ci"
artifacts_location: ./e2e/logs
publish_check_name: E2E Test Results
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Load Nix
run: nix develop -c sh -c "go mod download"
run: nix develop -c sh -c "cd lib && go mod download"
- name: Setup environment
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
with:
Expand All @@ -137,7 +137,7 @@ jobs:
cl_repo: ${{ env.CHAINLINK_IMAGE }}
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
test_command_to_run: |
nix develop -c sh -c "make k8s_test_e2e_ci_remote_runner"
nix develop -c sh -c "cd lib && make k8s_test_e2e_ci_remote_runner"
artifacts_location: ./k8s/logs
publish_check_name: E2E Remote Runner Test Results
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit ee5ebf0

Please sign in to comment.