mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/topic/timw/ci-macos-sequoia'
* origin/topic/timw/ci-macos-sequoia: ci/init-external-repo.sh: Use regex to match macos cirrus task CI: Change macOS runner to Sequoia
This commit is contained in:
commit
43f108bb71
4 changed files with 13 additions and 7 deletions
|
@ -377,12 +377,12 @@ alpine_task:
|
||||||
# Cirrus only supports the following macos runner currently, selecting
|
# Cirrus only supports the following macos runner currently, selecting
|
||||||
# anything else automatically upgrades to this one.
|
# anything else automatically upgrades to this one.
|
||||||
#
|
#
|
||||||
# ghcr.io/cirruslabs/macos-runner:sonoma
|
# ghcr.io/cirruslabs/macos-runner:sequoia
|
||||||
#
|
#
|
||||||
# See also: https://cirrus-ci.org/guide/macOS/
|
# See also: https://cirrus-ci.org/guide/macOS/
|
||||||
macos_sonoma_task:
|
macos_sequoia_task:
|
||||||
macos_instance:
|
macos_instance:
|
||||||
image: ghcr.io/cirruslabs/macos-runner:sonoma
|
image: ghcr.io/cirruslabs/macos-runner:sequoia
|
||||||
prepare_script: ./ci/macos/prepare.sh
|
prepare_script: ./ci/macos/prepare.sh
|
||||||
<< : *CI_TEMPLATE
|
<< : *CI_TEMPLATE
|
||||||
<< : *MACOS_ENVIRONMENT
|
<< : *MACOS_ENVIRONMENT
|
||||||
|
|
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
||||||
|
7.2.0-dev.318 | 2025-03-17 11:55:11 -0700
|
||||||
|
|
||||||
|
* ci/init-external-repo.sh: Use regex to match macos cirrus task (Arne Welzel, Corelight)
|
||||||
|
|
||||||
|
* CI: Change macOS runner to Sequoia (Tim Wojtulewicz, Corelight)
|
||||||
|
|
||||||
7.2.0-dev.314 | 2025-03-12 13:10:58 +0100
|
7.2.0-dev.314 | 2025-03-12 13:10:58 +0100
|
||||||
|
|
||||||
* github/generate-docs: Run pre-commit (Arne Welzel, Corelight)
|
* github/generate-docs: Run pre-commit (Arne Welzel, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
7.2.0-dev.314
|
7.2.0-dev.318
|
||||||
|
|
|
@ -51,9 +51,9 @@ if [[ -n "${CIRRUS_CI}" ]] && [[ "${CIRRUS_REPO_OWNER}" == "zeek" ]] && [[ ! -d
|
||||||
|
|
||||||
banner "Trying to clone zeek-testing-private git repo"
|
banner "Trying to clone zeek-testing-private git repo"
|
||||||
echo "${ZEEK_TESTING_PRIVATE_SSH_KEY}" >cirrus_key.b64
|
echo "${ZEEK_TESTING_PRIVATE_SSH_KEY}" >cirrus_key.b64
|
||||||
if [ "${CIRRUS_TASK_NAME}" == "macos_ventura" -o "${CIRRUS_TASK_NAME}" == "macos_sonoma" ]; then
|
if [[ "${CIRRUS_TASK_NAME}" =~ ^macos_ ]]; then
|
||||||
# The base64 command provided with macOS Ventura/Sonoma requires an argument
|
# The base64 command provided with macOS requires an argument
|
||||||
# to pass the input filename
|
# to pass the input filename, while -i elsewhere is "ignore garbage".
|
||||||
base64 -d -i cirrus_key.b64 >cirrus_key
|
base64 -d -i cirrus_key.b64 >cirrus_key
|
||||||
else
|
else
|
||||||
base64 -d cirrus_key.b64 >cirrus_key
|
base64 -d cirrus_key.b64 >cirrus_key
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue