forked from bitcoinj/bitcoinj
-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (45 loc) · 1.42 KB
/
checkpoints.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
44
45
46
47
name: Checkpoints
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
java: ['11', '17', '19']
distribution: ['temurin']
gradle: ['7.6.2']
fail-fast: false
name: JAVA ${{ matrix.distribution }} ${{ matrix.java }} OS ${{ matrix.os }} Gradle ${{ matrix.gradle }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: set NOW env
run: echo "NOW=$(date +'%d.%m.%Y')" >> $GITHUB_ENV
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: ${{ matrix.gradle }}
- name: Build mainnet checkpoints
run: ./tools/build-checkpoints --net=MAINNET
- name: Build testnet checkpoints
run: ./tools/build-checkpoints --net=TESTNET
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: checkpoints-${{ env.NOW }}
path: |
tools/checkpoints.txt
tools/checkpoints-testnet.txt
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: checkpoints-${{ env.NOW }}