forked from Rothamsted/knetminer
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (59 loc) · 2.26 KB
/
build.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Standard Build
on:
schedule:
# m h d M wd(MON-SUN)
- cron: "0 12 * * *"
workflow_dispatch:
inputs:
# These can be set when the build is invoked manually, from GH Actions.
#
# Set BOTH when you want to trigger a new release. The build script will
# switch Maven to the new release, deploy, tag git, move Maven to the new snapshot
#
NEW_RELEASE_VER:
description: "New Release Version"
required: false
NEW_SNAPSHOT_VER:
description: "New Snapshot Version"
required: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-v2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-v2-
- name: Build
env:
KNET_REPO_USER: ${{secrets.KNET_REPO_USER}}
KNET_REPO_PASSWORD: ${{secrets.KNET_REPO_PASSWORD}}
GIT_USER: ${{secrets.GIT_USER}}
GIT_PASSWORD: ${{github.token}}
GIT_USER_EMAIL: ${{secrets.GIT_USER_EMAIL}}
NEW_RELEASE_VER: ${{ github.event.inputs.NEW_RELEASE_VER }}
NEW_SNAPSHOT_VER: ${{ github.event.inputs.NEW_SNAPSHOT_VER }}
CI_TRIGGERING_EVENT: ${{ github.event_name }}
# If you use on: schedule:, this will tell build.sh how often you try to trigger a build
# It uses it to know if there are git changes since the last scheduled build
CI_SCHEDULE_PERIOD: 24 # hours
KNET_JENKINS_USER: ${{secrets.KNET_JENKINS_USER}}
KNET_JENKINS_TOKEN: ${{secrets.KNET_JENKINS_TOKEN}}
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
mkdir -p ci-build
export CI_DIR_URL="https://raw.githubusercontent.com/Rothamsted/knetminer-common/master/ci-build"
wget "$CI_DIR_URL/install.sh" -O ci-build/install.sh
bash ./ci-build/install.sh
bash ./ci-build/build.sh