Skip to content

Commit 0d83fd2

Browse files
authored
Fix/testing
1 parent 20d5a2e commit 0d83fd2

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/pr_checks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
uses: actions/setup-go@v5
1313
with:
1414
go-version: '1.21.x'
15+
- name: Setup Terraform
16+
uses: hashicorp/setup-terraform@v3
17+
with:
18+
terraform_version: "1.11.1"
1519
- name: Install dependencies
1620
run: go get ./...
1721
- name: Build

test/octopus_container_test_framework.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,6 @@ func (o *OctopusContainerTest) setupOctopus(ctx context.Context, connString stri
218218
Networks: []string{
219219
network,
220220
},
221-
Entrypoint: []string{"/bin/bash"},
222-
Cmd: []string{
223-
"-c",
224-
"apt-get update && apt-get install -y curl gnupg lsb-release && " +
225-
"curl -fsSL https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg && " +
226-
"echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main\" | tee /etc/apt/sources.list.d/hashicorp.list > /dev/null && " +
227-
"apt-get update && apt-get install -y terraform && " +
228-
"./install.sh",
229-
},
230221
}
231222

232223
req.Env = o.AddCustomEnvironment(req.Env)

0 commit comments

Comments
 (0)