-
Notifications
You must be signed in to change notification settings - Fork 31
62 lines (55 loc) · 1.65 KB
/
strong-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Quickstart for GitHub Actions
# https://docs.github.com/en/actions/quickstart
name: Strong CI
on:
push:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-excluding-paths
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
workflow_dispatch:
jobs:
test:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
runs-on: ubuntu-latest
timeout-minutes: 15
name: CI by multiply java versions
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: setup Java 8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: zulu
# only first java setup need enable cache
cache: maven
- name: setup Java 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: microsoft
- name: setup Java 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: microsoft
- name: setup Java 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: zulu
- run: scripts/integration_test
- name: remove self maven install files
run: rm -rf $HOME/.m2/repository/com/foldright/auto-pipeline/
- name: Upload coverage to Codecov
# https://github.com/marketplace/actions/codecov
uses: codecov/codecov-action@v4
with:
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}