aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-08-17 14:04:55 +0100
committerfanquake <fanquake@gmail.com>2023-08-17 14:17:40 +0100
commit6ce5e8f4758e6fccf59b3980af417ec6c75e383e (patch)
tree47caca45851410ecb40ccb52ca1a501c942dbee6
parentde197c19e48ccaf03c9096b5a4b53fdede2f1520 (diff)
parentfa263877691a7babb08a83f5f977390a0ba64729 (diff)
downloadbitcoin-6ce5e8f4758e6fccf59b3980af417ec6c75e383e.tar.xz
Merge bitcoin/bitcoin#28278: ci: Refactor: Remove CI_USE_APT_INSTALL
fa263877691a7babb08a83f5f977390a0ba64729 ci: Refactor: Remove CI_USE_APT_INSTALL (MarcoFalke) Pull request description: Seems odd to use `CI_USE_APT_INSTALL == no` as an alias for `CI_OS_NAME == macos`. Fix this by removing the alias. Also, for github CI: * restore MAKEJOBS to the same value as in cirrus.yml. * remove cirrus-only PACKAGE_MANAGER_INSTALL. * remove redundant TEST_RUNNER_TIMEOUT_FACTOR * Add M1 link ACKs for top commit: hebasto: ACK fa263877691a7babb08a83f5f977390a0ba64729. Tree-SHA512: e235aa70abd60738a9ad1531284a94e2122c9c7a22c2514ede437b49da5c06b2597fba7fccf615541fb3adb4e1f8076aa8c6047f926393191a629713554ab000
-rw-r--r--.cirrus.yml2
-rw-r--r--.github/workflows/ci.yml8
-rwxr-xr-xci/test/01_base_install.sh2
3 files changed, 5 insertions, 7 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index d72a2b289d..980f6e9de9 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -3,7 +3,7 @@ env: # Global defaults
PACKAGE_MANAGER_INSTALL: "apt-get update && apt-get install -y"
MAKEJOBS: "-j10"
TEST_RUNNER_PORT_MIN: "14000" # Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
- CI_FAILFAST_TEST_LEAVE_DANGLING: "1" # Cirrus CI does not care about dangling process and setting this variable avoids killing the CI script itself on error
+ CI_FAILFAST_TEST_LEAVE_DANGLING: "1" # Cirrus CI does not care about dangling processes and setting this variable avoids killing the CI script itself on error
CCACHE_MAXSIZE: "200M"
CCACHE_DIR: "/tmp/ccache_dir"
CCACHE_NOHASHDIR: "1" # Debug info might contain a stale path if the build dir changes, but this is fine
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 73a45f4db8..f5695d01cc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,14 +19,15 @@ concurrency:
env:
DANGER_RUN_CI_ON_HOST: 1
- TEST_RUNNER_TIMEOUT_FACTOR: 40
+ CI_FAILFAST_TEST_LEAVE_DANGLING: 1 # GHA does not care about dangling processes and setting this variable avoids killing the CI script itself on error
+ MAKEJOBS: '-j10'
jobs:
macos-native-x86_64:
name: macOS 13 native, x86_64 [no depends, sqlite only, gui]
# Use latest image, but hardcode version to avoid silent upgrades (and breaks).
# See: https://github.com/actions/runner-images#available-images.
- runs-on: macos-13
+ runs-on: macos-13 # Use M1 once available https://github.com/github/roadmap/issues/528
# No need to run on the read-only mirror, unless it is a PR.
if: github.repository != 'bitcoin-core/gui' || github.event_name == 'pull_request'
@@ -34,9 +35,6 @@ jobs:
timeout-minutes: 120
env:
- MAKEJOBS: '-j4'
- CI_USE_APT_INSTALL: 'no'
- PACKAGE_MANAGER_INSTALL: 'echo' # Nothing to do
FILE_ENV: './ci/test/00_setup_env_mac_native.sh'
BASE_ROOT_DIR: ${{ github.workspace }}
diff --git a/ci/test/01_base_install.sh b/ci/test/01_base_install.sh
index c9a496e6ab..de3f5acc95 100755
--- a/ci/test/01_base_install.sh
+++ b/ci/test/01_base_install.sh
@@ -22,7 +22,7 @@ fi
if [[ $CI_IMAGE_NAME_TAG == *centos* ]]; then
bash -c "dnf -y install epel-release"
bash -c "dnf -y --allowerasing install $CI_BASE_PACKAGES $PACKAGES"
-elif [ "$CI_USE_APT_INSTALL" != "no" ]; then
+elif [ "$CI_OS_NAME" != "macos" ]; then
if [[ -n "${APPEND_APT_SOURCES_LIST}" ]]; then
echo "${APPEND_APT_SOURCES_LIST}" >> /etc/apt/sources.list
fi