File tree Expand file tree Collapse file tree 5 files changed +10
-16
lines changed Expand file tree Collapse file tree 5 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ APT_SOURCES_DIR="/etc/apt/sources.list.d"
2929export DEBIAN_FRONTEND=noninteractive
3030
3131# Configuration
32- BLACKLISTED_REPOS=( helm-stable-debian.list ) # Default blacklisted repositories
33- # BLACKLISTED_REPOS=() # Uncomment to start with no blacklisted repos
32+ BLACKLISTED_REPOS=() # Uncomment to start with no blacklisted repos
3433VERBOSE=false
3534DRY_RUN=false
3635SUDO_CMD=" "
Original file line number Diff line number Diff line change 44-- NOTE: minaToolchainBookworm is also used for building Ubuntu Jammy packages in CI
55{ toolchainBase = " codaprotocol/ci-toolchain-base:v3"
66, minaToolchainBookworm =
7- " gcr.io/o1labs-192920/mina-toolchain@sha256:809e6b4af19a962a6a158b835007e24c45118d0d3da59a8b8013094c774f8279 "
7+ " gcr.io/o1labs-192920/mina-toolchain@sha256:cb7253baa6389779bf6986285dfc34ed60ce389bebdeae3bb68c25945ba6670b "
88, minaToolchainBullseye =
9- " gcr.io/o1labs-192920/mina-toolchain@sha256:7a9cd3e3eeb30ef2a7cad1737bcf7382c425275dc7664c86c9714ab4fe7bd091 "
9+ " gcr.io/o1labs-192920/mina-toolchain@sha256:f26c26154d8185dc473d25bf19e71670beee8d8083c03acb3a242a56154d9511 "
1010, minaToolchainNoble =
11- " gcr.io/o1labs-192920/mina-toolchain@sha256:56455a3fa1a3b575b511e89aba88f7f8374ecc7b20ca04f26e035b17b63356e9"
11+ " gcr.io/o1labs-192920/mina-toolchain@sha256:190f31de9aa9b6da0f2be93e467f0307fbc85fd0c32e2e742e8b566bb2e23a45"
12+ , minaToolchainJammy =
13+ " gcr.io/o1labs-192920/mina-toolchain@sha256:969baf296735abc81958c0a2192973562287f5c9f170442b44076047bde7a1e1"
1214, minaToolchain =
13- " gcr.io/o1labs-192920/mina-toolchain@sha256:7a9cd3e3eeb30ef2a7cad1737bcf7382c425275dc7664c86c9714ab4fe7bd091 "
15+ " gcr.io/o1labs-192920/mina-toolchain@sha256:f26c26154d8185dc473d25bf19e71670beee8d8083c03acb3a242a56154d9511 "
1416, postgres = " postgres:12.4-alpine"
1517, xrefcheck =
1618 " dkhamsing/awesome_bot@sha256:a8adaeb3b3bd5745304743e4d8a6d512127646e420544a6d22d9f58a07f35884"
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ RUN apt-get update --quiet --yes \
4747 libssl1.1 \
4848 tzdata \
4949 jq \
50+ procps \
5051 sudo \
5152 wget \
5253 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ RUN apt-get update --yes \
3030 postgresql \
3131 postgresql-contrib \
3232 perl \
33+ procps \
3334 python3 \
3435 python3-pip \
3536 python3-sexpdata \
@@ -65,13 +66,6 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.
6566
6667ENV USE_GKE_GCLOUD_AUTH_PLUGIN=True
6768
68- # --- Helm tools
69- RUN curl https://baltocdn.com/helm/signing.asc | apt-key add - \
70- && echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list \
71- && apt-get update --yes \
72- && apt-get install --yes --no-install-recommends helm \
73- && rm -rf /var/lib/apt/lists/*
74-
7569# --- yarn + nodejs, pinned version
7670RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \
7771 && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - \
Original file line number Diff line number Diff line change 44
55buildkite/scripts/debian/update.sh --verbose
66
7- apt-get install -y procps
8-
97# test archive node on known archive db
108NETWORK_DATA_FOLDER=${NETWORK_DATA_FOLDER:- src/ test/ archive/ sample_db}
119ARCHIVE_TEST_APP=${ARCHIVE_TEST_APP:- _build/ default/ src/ test/ archive/ archive_node_tests/ archive_node_tests.exe}
@@ -15,4 +13,4 @@ ARCHIVE_TEST_APP=${ARCHIVE_TEST_APP:-_build/default/src/test/archive/archive_nod
1513MINA_TEST_POSTGRES_URI=${POSTGRES_URI:- " postgres://postgres:postgres@localhost:5432" }
1614
1715echo " Running archive node test"
18- MINA_TEST_POSTGRES_URI=$MINA_TEST_POSTGRES_URI $ARCHIVE_TEST_APP
16+ MINA_TEST_POSTGRES_URI=$MINA_TEST_POSTGRES_URI $ARCHIVE_TEST_APP -v
You can’t perform that action at this time.
0 commit comments