-
Notifications
You must be signed in to change notification settings - Fork 8
124 lines (101 loc) · 3.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: MERIT build
on:
push:
branches:
- githubactions
- dev
- master
- feature/**
- hotfix/**
- release/**
env:
TZ: Australia/Canberra
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Install nodejs
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm config set //npm.pkg.github.com/:_authToken $NODE_AUTH_TOKEN
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm install
- name: Validate Gradle wrapper
uses: gradle/[email protected]
- name: Install and start elasticsearch
run: |
curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.3-amd64.deb -o elasticsearch.deb
sudo dpkg -i --force-confnew elasticsearch.deb
sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
sudo sh -c 'echo ES_JAVA_OPTS=\"-Xmx1g -Xms1g\" >> /etc/default/elasticsearch'
sudo service elasticsearch restart
- name: Setup required MERIT folders
run: |
sudo mkdir -p /data/fieldcapture/cache
sudo chmod o+xw /data
sudo chmod o+xw /data/fieldcapture
sudo chmod o+xw /data/fieldcapture/cache
- name: Install and start mongodb
uses: supercharge/[email protected]
with:
mongodb-version: '5.0'
- name: Build and run jacoco coverage report with Gradle
uses: gradle/[email protected]
with:
arguments: test
env:
GPR_USER: ${{env.GITHUB_ACTOR}}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install javascript packages using the gradle clientInstall plugin
uses: gradle/[email protected]
with:
arguments: clientInstall
env:
GPR_USER: ${{env.GITHUB_ACTOR}}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Run javascript unit tests
run: node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless
- name: Run MERIT functional tests
run: ./src/main/scripts/runFunctionalTests.sh
env:
GPR_USER: ${{env.GITHUB_ACTOR}}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Clean to remove clover instrumentation
uses: gradle/[email protected]
with:
arguments: clean
env:
GPR_USER: ${{env.GITHUB_ACTOR}}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Read the MERIT version from the gradle.properties file
id: read_property
uses: christian-draeger/[email protected]
with:
path: './gradle.properties'
properties: 'meritVersion'
- uses: castlabs/[email protected]
id: versions
with:
version: ${{steps.read_property.outputs.meritVersion}}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/delete-package-versions@v2
if: ${{ steps.versions.outputs.ids != '' }}
with:
package-version-ids: "${{ steps.versions.outputs.ids }}"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish the JAR to the repository
uses: gradle/[email protected]
with:
arguments: publish
env:
GPR_USER: ${{env.GITHUB_ACTOR}}
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}