-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitlab-ci.yml
43 lines (41 loc) · 1.83 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Build on NixOS using the devshell from `flake.nix` and secp256k1 installed via `nix profile install`
nixos-devshell:
image: nixos/nix:latest
variables:
NIXPKGS_URL: "github:NixOS/nixpkgs/nixos-unstable"
before_script:
# Configure Nix to use a binary cache and enable experimental features
- nix-env -iA nixpkgs.cachix
- cachix use nix-community
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
- nix profile install nixpkgs#secp256k1
script:
- nix develop .#minimum -c gradle build run runEcdsa
cache:
key: "${CI_COMMIT_REF_SLUG}"
paths:
- /nix/store
- ~/.gradle/
# Build on Trixie using Debian's OpenJDK 23, Gradle via the Wrapper and secp256k1 installed via `nix profile install`.
# When Trixie is finalized, JDK 23 will probably be dropped, and we will need to use Nix to install a JDK.
trixie-gradlew:
image: debian:trixie-slim
before_script:
- apt-get update
- apt-get -y install openjdk-23-jdk-headless nix-setup-systemd
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
- nix profile install nixpkgs#secp256k1
script:
- ./gradlew build run runEcdsa
# Build on Sid (Forky) using Debian's OpenJDK 23, Gradle via the Wrapper and secp256k1 installed via `nix profile install`.
# Sid/Forky should eventually have an LTS OpenJDK 25 which is our target version for a production-quality release of
# secp256k1-jdk. If we're lucky it might even get a Debian Gradle we can use. If so, we can make a Forky build that doesn't need Nix.
forky-gradlew:
image: debian:sid-slim
before_script:
- apt-get update
- apt-get -y install openjdk-23-jdk-headless nix-setup-systemd
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
- nix profile install nixpkgs#secp256k1
script:
- ./gradlew build run runEcdsa