-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (48 loc) · 1.38 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
name: unsafe-tracker
# This workflow is triggered on pushes to the repository.
on: [push]
jobs:
build:
name: unsafe-tracker ci
# This job runs on Linux
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java_version: ['17']
steps:
- name: Environment
run: env | sort
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
architecture: x64
- name: Tests
run: |
./gradlew check
- name: Release
if: "contains(github.event.head_commit.message, '[release]')"
run: |
bash publish.sh unsafe-tracker
env:
GRADLE_OPTS: '-Dorg.gradle.daemon=false'
AWS_ACCESS_KEY_ID: ${{secrets.TOWER_CI_AWS_ACCESS}}
AWS_SECRET_ACCESS_KEY: ${{secrets.TOWER_CI_AWS_SECRET}}
AWS_DEFAULT_REGION: 'eu-west-1'
PUBLISH_REPO_URL: "s3://maven.seqera.io/releases"
- name: Publish tests report
if: failure()
uses: actions/upload-artifact@v3
with:
name: test-reports-jdk-${{ matrix.java_version }}
path: |
**/build/reports/tests/test
...