mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
Remove nixpkgs override and the lib we no longer use
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
parent
b5d54c2184
commit
de355ec634
@ -596,15 +596,12 @@ jobs:
|
|||||||
buildSteps:
|
buildSteps:
|
||||||
- "run":
|
- "run":
|
||||||
name: "Unit Test"
|
name: "Unit Test"
|
||||||
|
environment:
|
||||||
|
# Once dependencies are built, we can allow some more concurrency for our own
|
||||||
|
# test suite.
|
||||||
|
UNITTEST_CORES: 8
|
||||||
command: |
|
command: |
|
||||||
source .circleci/lib.sh
|
|
||||||
|
|
||||||
# Translate the nixpkgs selection into a flake reference we
|
|
||||||
# can use to override the default nixpkgs input.
|
|
||||||
NIXPKGS=$(nixpkgs_flake_reference <<parameters.nixpkgs>>)
|
|
||||||
|
|
||||||
nix run \
|
nix run \
|
||||||
--override-input nixpkgs "$NIXPKGS" \
|
|
||||||
.#<<parameters.pythonVersion>>-unittest -- \
|
.#<<parameters.pythonVersion>>-unittest -- \
|
||||||
--jobs $UNITTEST_CORES \
|
--jobs $UNITTEST_CORES \
|
||||||
allmydata
|
allmydata
|
||||||
@ -766,16 +763,6 @@ commands:
|
|||||||
type: "steps"
|
type: "steps"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- "run":
|
|
||||||
name: "Install Basic Dependencies"
|
|
||||||
command: |
|
|
||||||
# Get some build environment dependencies and let them float on a
|
|
||||||
# certain release branch. These aren't involved in the actual
|
|
||||||
# package build (only in CI environment setup) so the fact that
|
|
||||||
# they float shouldn't hurt reproducibility.
|
|
||||||
NIXPKGS="nixpkgs/nixos-24.11"
|
|
||||||
nix profile install $NIXPKGS#bash $NIXPKGS#jp
|
|
||||||
|
|
||||||
- "checkout"
|
- "checkout"
|
||||||
|
|
||||||
- "run":
|
- "run":
|
||||||
@ -788,14 +775,17 @@ commands:
|
|||||||
|
|
||||||
- "run":
|
- "run":
|
||||||
name: "Build Package"
|
name: "Build Package"
|
||||||
|
environment:
|
||||||
|
# CircleCI build environment looks like it has a zillion and a half cores.
|
||||||
|
# Don't let Nix autodetect this high core count because it blows up memory
|
||||||
|
# usage and fails the test run. Pick a number of cores that suits the build
|
||||||
|
# environment we're paying for (the free one!).
|
||||||
|
DEPENDENCY_CORES: 3
|
||||||
command: |
|
command: |
|
||||||
source .circleci/lib.sh
|
|
||||||
NIXPKGS=$(nixpkgs_flake_reference <<parameters.nixpkgs>>)
|
|
||||||
nix build \
|
nix build \
|
||||||
--verbose \
|
--verbose \
|
||||||
--print-build-logs \
|
--print-build-logs \
|
||||||
--cores "$DEPENDENCY_CORES" \
|
--cores "$DEPENDENCY_CORES" \
|
||||||
--override-input nixpkgs "$NIXPKGS" \
|
|
||||||
.#<<parameters.pythonVersion>>-tahoe-lafs
|
.#<<parameters.pythonVersion>>-tahoe-lafs
|
||||||
|
|
||||||
- steps: "<<parameters.buildSteps>>"
|
- steps: "<<parameters.buildSteps>>"
|
||||||
|
148
.circleci/lib.sh
148
.circleci/lib.sh
@ -1,148 +0,0 @@
|
|||||||
# CircleCI build environment looks like it has a zillion and a half cores.
|
|
||||||
# Don't let Nix autodetect this high core count because it blows up memory
|
|
||||||
# usage and fails the test run. Pick a number of cores that suits the build
|
|
||||||
# environment we're paying for (the free one!).
|
|
||||||
DEPENDENCY_CORES=3
|
|
||||||
|
|
||||||
# Once dependencies are built, we can allow some more concurrency for our own
|
|
||||||
# test suite.
|
|
||||||
UNITTEST_CORES=8
|
|
||||||
|
|
||||||
# Run a command, enabling cache writes to cachix if possible. The command is
|
|
||||||
# accepted as a variable number of positional arguments (like argv).
|
|
||||||
function cache_if_able() {
|
|
||||||
# Dump some info about our build environment.
|
|
||||||
describe_build
|
|
||||||
|
|
||||||
if is_cache_writeable; then
|
|
||||||
# If the cache is available we'll use it. This lets fork owners set
|
|
||||||
# up their own caching if they want.
|
|
||||||
echo "Cachix credentials present; will attempt to write to cache."
|
|
||||||
|
|
||||||
# The `cachix watch-exec ...` does our cache population. When it sees
|
|
||||||
# something added to the store (I guess) it pushes it to the named
|
|
||||||
# cache.
|
|
||||||
cachix watch-exec "${CACHIX_NAME}" -- "$@"
|
|
||||||
else
|
|
||||||
if is_cache_required; then
|
|
||||||
echo "Required credentials (CACHIX_AUTH_TOKEN) are missing."
|
|
||||||
return 1
|
|
||||||
else
|
|
||||||
echo "Cachix credentials missing; will not attempt cache writes."
|
|
||||||
"$@"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function is_cache_writeable() {
|
|
||||||
# We can only *push* to the cache if we have a CACHIX_AUTH_TOKEN. in-repo
|
|
||||||
# jobs will get this from CircleCI configuration but jobs from forks may
|
|
||||||
# not.
|
|
||||||
[ -v CACHIX_AUTH_TOKEN ]
|
|
||||||
}
|
|
||||||
|
|
||||||
function is_cache_required() {
|
|
||||||
# If we're building in tahoe-lafs/tahoe-lafs then we must use the cache.
|
|
||||||
# If we're building anything from a fork then we're allowed to not have
|
|
||||||
# the credentials.
|
|
||||||
is_upstream
|
|
||||||
}
|
|
||||||
|
|
||||||
# Return success if the origin of this build is the tahoe-lafs/tahoe-lafs
|
|
||||||
# repository itself (and so we expect to have cache credentials available),
|
|
||||||
# failure otherwise.
|
|
||||||
#
|
|
||||||
# See circleci.txt for notes about how this determination is made.
|
|
||||||
function is_upstream() {
|
|
||||||
# CIRCLE_PROJECT_USERNAME is set to the org the build is happening for.
|
|
||||||
# If a PR targets a fork of the repo then this is set to something other
|
|
||||||
# than "tahoe-lafs".
|
|
||||||
[ "$CIRCLE_PROJECT_USERNAME" == "tahoe-lafs" ] &&
|
|
||||||
|
|
||||||
# CIRCLE_BRANCH is set to the real branch name for in-repo PRs and
|
|
||||||
# "pull/NNNN" for pull requests from forks.
|
|
||||||
#
|
|
||||||
# CIRCLE_PULL_REQUESTS is set to a comma-separated list of the full
|
|
||||||
# URLs of the PR pages which share an underlying branch, with one of
|
|
||||||
# them ended with that same "pull/NNNN" for PRs from forks.
|
|
||||||
! any_element_endswith "/$CIRCLE_BRANCH" "," "$CIRCLE_PULL_REQUESTS"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Return success if splitting $3 on $2 results in an array with any element
|
|
||||||
# that ends with $1, failure otherwise.
|
|
||||||
function any_element_endswith() {
|
|
||||||
suffix=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
sep=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
haystack=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
IFS="${sep}" read -r -a elements <<< "$haystack"
|
|
||||||
for elem in "${elements[@]}"; do
|
|
||||||
if endswith "$suffix" "$elem"; then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Return success if $2 ends with $1, failure otherwise.
|
|
||||||
function endswith() {
|
|
||||||
suffix=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
haystack=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
case "$haystack" in
|
|
||||||
*${suffix})
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
return 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
function describe_build() {
|
|
||||||
echo "Building PR for user/org: ${CIRCLE_PROJECT_USERNAME}"
|
|
||||||
echo "Building branch: ${CIRCLE_BRANCH}"
|
|
||||||
if is_upstream; then
|
|
||||||
echo "Upstream build."
|
|
||||||
else
|
|
||||||
echo "Non-upstream build."
|
|
||||||
fi
|
|
||||||
if is_cache_required; then
|
|
||||||
echo "Cache is required."
|
|
||||||
else
|
|
||||||
echo "Cache not required."
|
|
||||||
fi
|
|
||||||
if is_cache_writeable; then
|
|
||||||
echo "Cache is writeable."
|
|
||||||
else
|
|
||||||
echo "Cache not writeable."
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Inspect the flake input metadata for an input of a given name and return the
|
|
||||||
# revision at which that input is pinned. If the input does not exist then
|
|
||||||
# return garbage (probably "null").
|
|
||||||
read_input_revision() {
|
|
||||||
input_name=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
nix flake metadata --json | jp --unquoted 'locks.nodes."'"$input_name"'".locked.rev'
|
|
||||||
}
|
|
||||||
|
|
||||||
# Return a flake reference that refers to a certain revision of nixpkgs. The
|
|
||||||
# certain revision is the revision to which the specified input is pinned.
|
|
||||||
nixpkgs_flake_reference() {
|
|
||||||
input_name=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
echo "github:NixOS/nixpkgs?rev=$(read_input_revision $input_name)"
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user