Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(shared): bump vendored ci files #193

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ci/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: 'chore: add webhook config'
sha: 9d0f008e41df2f5d5e0461171c02fc0c4aee1d6f
commitTitle: 'chore: use --attach on docker host'
sha: 9d971fd13c024c5f8e6888208a0311178453409d
path: .
path: ../.github/workflows/vendor
- contents:
- git:
commitTitle: 'chore: add webhook config'
sha: 9d0f008e41df2f5d5e0461171c02fc0c4aee1d6f
commitTitle: 'chore: use --attach on docker host'
sha: 9d971fd13c024c5f8e6888208a0311178453409d
path: .
path: ./vendor
kind: LockConfig
4 changes: 2 additions & 2 deletions ci/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ directories:
- path: . # Copy this folder out to ..
git:
url: https://github.com/GaloyMoney/concourse-shared.git
ref: 9d0f008e41df2f5d5e0461171c02fc0c4aee1d6f
ref: 9d971fd13c024c5f8e6888208a0311178453409d
includePaths:
- shared/actions/*
excludePaths:
Expand All @@ -22,7 +22,7 @@ directories:
- path: .
git:
url: https://github.com/GaloyMoney/concourse-shared.git
ref: 9d0f008e41df2f5d5e0461171c02fc0c4aee1d6f
ref: 9d971fd13c024c5f8e6888208a0311178453409d
includePaths:
- shared/ci/**/*
excludePaths:
Expand Down
1 change: 1 addition & 0 deletions ci/vendor/pipeline-fragments.lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ plan:
- { get: repo, trigger: true }
- { get: pipeline-tasks }
- task: #@ container
attempts: 2
timeout: 12m
tags: ["galoy-staging"]
config:
Expand Down
2 changes: 1 addition & 1 deletion ci/vendor/tasks/test-on-docker-host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gcloud compute scp --ssh-key-file=${CI_ROOT}/login.ssh \
--zone=${host_zone} \
--project=${gcp_project} > /dev/null

gcloud_ssh "cd ${REPO_PATH}; export TMP_ENV_CI=tmp.env.ci; export COMPOSE_PROJECT_NAME=${REPO_PATH}; docker compose pull; docker compose -f docker-compose.yml up ${TEST_CONTAINER}"
gcloud_ssh "cd ${REPO_PATH}; export TMP_ENV_CI=tmp.env.ci; export COMPOSE_PROJECT_NAME=${REPO_PATH}; docker compose pull; docker compose -f docker-compose.yml up ${TEST_CONTAINER} --attach ${TEST_CONTAINER} 2>&1"

container_id=$(gcloud_ssh "docker ps -q -f status=exited -f name=${PWD##*/}-${TEST_CONTAINER}-")
test_status=$(gcloud_ssh "docker inspect $container_id --format='{{.State.ExitCode}}'")
Expand Down
Loading