Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaflik committed Oct 16, 2024
1 parent 1195f6a commit 9274407
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
run:
shell: bash
strategy:
fail-fast: true
matrix:
go:
- "1.23"
Expand All @@ -36,9 +35,10 @@ jobs:
- name: Create Cloud instance
id: create
working-directory: .github/cloud/

run: |
export TF_VAR_allowed_cidr=$(curl -s ifconfig.me)/32
export TF_VAR_service_name=clickhouse-go $(git rev-parse --short HEAD) $(date +'%Y%m%d%H%M%S')
export TF_VAR_allowed_cidr="$(curl -s ifconfig.me)/32"
export TF_VAR_service_name="clickhouse-go $(git rev-parse --short HEAD) $(date +'%Y%m%d%H%M%S')"
terraform init
terraform validate
terraform apply -auto-approve -input=false -lock=false
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run-tests-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'tests:run-head'))
runs-on: [self-hosted, style-checker-aarch64]
strategy:
fail-fast: true
matrix:
go:
- "1.23"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
test:
runs-on: [self-hosted, style-checker-aarch64]
strategy:
fail-fast: true
matrix:
go:
- "1.23"
Expand Down

0 comments on commit 9274407

Please sign in to comment.