Skip to content

Commit 6365dc5

Browse files
committed
Update CI pipelines to call git-conceal-unlock
Wrapper from `ci-toolkit` that downloads `git-conceal` if it isn't yet available on the machine, then run `git-conceal unlock env:…`
1 parent 0c53098 commit 6365dc5

File tree

9 files changed

+8
-14
lines changed

9 files changed

+8
-14
lines changed

.buildkite/commands/git-crypt-unlock.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

.buildkite/commands/gradle-cache-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
"$(dirname "${BASH_SOURCE[0]}")/restore-cache.sh"
1212

1313
echo "--- :closed_lock_with_key: Decrypting Secrets"
14-
.buildkite/commands/git-crypt-unlock.sh
14+
git-conceal-unlock
1515

1616
echo "--- :rubygems: Setting up Gems"
1717
install_gems

.buildkite/commands/prototype-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010
APP_TO_BUILD="${1?You need to specify the app to build, WooCommerce or WooCommerce-Wear}"
1111

1212
echo "--- :closed_lock_with_key: Decrypting Secrets"
13-
.buildkite/commands/git-crypt-unlock.sh
13+
git-conceal-unlock
1414

1515
echo "--- :rubygems: Setting up Gems"
1616
install_gems

.buildkite/commands/release-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
APP_TO_BUILD="${1?You need to specify the app to build, WooCommerce or WooCommerce-Wear}"
44

55
echo "--- :closed_lock_with_key: Decrypting Secrets"
6-
.buildkite/commands/git-crypt-unlock.sh
6+
git-conceal-unlock
77

88
echo "--- :rubygems: Setting up Gems"
99
install_gems

.buildkite/commands/run-instrumented-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99
"$(dirname "${BASH_SOURCE[0]}")/restore-cache.sh"
1010

1111
echo "--- :closed_lock_with_key: Decrypting Secrets"
12-
.buildkite/commands/git-crypt-unlock.sh
12+
git-conceal-unlock
1313

1414
echo "--- :rubygems: Setting up Gems"
1515
install_gems

.buildkite/commands/run-unit-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99
"$(dirname "${BASH_SOURCE[0]}")/restore-cache.sh"
1010

1111
echo "--- :closed_lock_with_key: Decrypting Secrets"
12-
.buildkite/commands/git-crypt-unlock.sh
12+
git-conceal-unlock
1313

1414
echo "--- :rubygems: Setting up Gems"
1515
install_gems

.buildkite/release-pipelines/download-release-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ steps:
1111
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
1212
1313
echo '--- :closed_lock_with_key: Decrypting Secrets'
14-
.buildkite/commands/git-crypt-unlock.sh
14+
git-conceal-unlock
1515
1616
echo '--- :ruby: Setup Ruby Tools'
1717
install_gems

.buildkite/release-pipelines/finalize-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ steps:
1111
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
1212
1313
echo '--- :closed_lock_with_key: Decrypting Secrets'
14-
.buildkite/commands/git-crypt-unlock.sh
14+
git-conceal-unlock
1515
1616
echo '--- :ruby: Setup Ruby Tools'
1717
install_gems

.buildkite/shared-pipeline-vars

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# This file is `source`'d before calling `buildkite-agent pipeline upload`, and can be used
44
# to set up some variables that will be interpolated in the `.yml` pipeline before uploading it.
55

6-
# "git-crypt-unlock" branch / https://github.com/Automattic/a8c-ci-toolkit-buildkite-plugin/pull/195
7-
export CI_TOOLKIT="automattic/a8c-ci-toolkit#0a3f10921096cee57c18ac5667fc64c1aaad4a7d"
6+
export CI_TOOLKIT="automattic/a8c-ci-toolkit#0eddea7517788b2e4a524cb7285c228e9083b66f" # https://github.com/Automattic/a8c-ci-toolkit-buildkite-plugin/pull/195
87
export TEST_COLLECTOR="test-collector#v1.10.1"
98
export CLAUDE_PLUGIN="claude-summarize#v1.1.0"

0 commit comments

Comments
 (0)