Skip to content

Commit

Permalink
Changed the contracts docker path
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed May 16, 2024
1 parent 0a8a0bc commit 5cf6c71
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/e2e_custom_cl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ jobs:
with:
name: artifacts
path: ${{ env.CONTRACT_ARTIFACTS_PATH }}
- name: Setting artifacts permissions
run: chmod -R 777 ./contracts
- name: Install Solana CLI # required for ensuring the local test validator is configured correctly
run: ./scripts/install-solana-ci.sh
- name: Install gauntlet
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/docker/test_env/sol.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func (ms *Solana) getContainerRequest(inactiveFeatures InactiveFeatures) (*tc.Co
HostConfigModifier: func(hostConfig *container.HostConfig) {
hostConfig.Mounts = append(hostConfig.Mounts, mount.Mount{
Type: mount.TypeBind,
Source: utils.ContractsDir,
Source: fmt.Sprintf("%s/contracts", utils.ProjectRoot),
Target: "/programs",
ReadOnly: false,
})
Expand Down

0 comments on commit 5cf6c71

Please sign in to comment.