-
Notifications
You must be signed in to change notification settings - Fork 0
134 lines (134 loc) · 4.43 KB
/
continuous-integration.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
125
126
127
128
129
130
131
132
133
134
name: Continuous integration
on:
pull_request:
push:
branches-ignore:
- 'dependabot/**'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build_gradle:
name: "JDK ${{ matrix.java }} on ${{ matrix.os }}"
strategy:
matrix:
include:
- os: macos-latest
java: 8
- os: windows-latest
java: 8
- os: ubuntu-latest
java: 8
- os: ubuntu-latest
java: 11
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out WALA sources
uses: actions/checkout@v2
- name: Cache Goomph
uses: actions/cache@v1
with:
path: ~/.goomph
key: ${{ runner.os }}-goomph-${{ hashFiles('build.gradle') }}
restore-keys: ${{ runner.os }}-goomph-
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Build and test using Gradle with ECJ
uses: gradle/gradle-build-action@v2
with:
gradle-executable: xvfb-gradle.sh
arguments: aggregatedJavadocs javadoc build lintGradle
# testing ECJ compilation on any one OS is sufficient; we choose Linux arbitrarily
if: runner.os == 'Linux'
- name: Build and test using Gradle but without ECJ
uses: gradle/gradle-build-action@v2
with:
arguments: aggregatedJavadocs javadoc build -PskipJavaUsingEcjTasks
if: runner.os != 'Linux'
- name: Check for Git cleanliness after build and test
run: ./check-git-cleanliness.sh
# not running in Borne or POSIX shell on Windows
if: runner.os != 'Windows'
build_maven:
name: "Maven Eclipse Tests"
strategy:
matrix:
include:
- os: ubuntu-latest
java: 8
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out WALA sources
uses: actions/checkout@v2
- name: 'Cache local Maven repository'
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: 'Prep for Maven'
shell: bash
run: ./gradlew prepareMavenBuild publishToMavenLocal -x javadoc
- name: 'Maven Tests'
shell: bash
run: mvn clean install -B -q -Dmaven.javadoc.skip=true
generate_docs:
name: 'Generate latest docs'
needs: [build_gradle, build_maven]
if: github.event_name == 'push' && github.repository == 'wala/WALA' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: Cache Goomph
uses: actions/cache@v1
with:
path: ~/.goomph
key: ${{ runner.os }}-goomph-${{ hashFiles('build.gradle') }}
restore-keys: ${{ runner.os }}-goomph-
- name: 'Set up JDK 8'
uses: actions/setup-java@v2
with:
java-version: 8
distribution: 'temurin'
- name: 'Generate latest docs'
env:
GITHUB_TOKEN: ${{ secrets.WALA_BOT_GH_TOKEN }}
run: ./generate-latest-docs.sh
publish_snapshot:
name: 'Publish snapshot'
needs: [build_gradle, build_maven]
if: github.event_name == 'push' && github.repository == 'wala/WALA' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: Cache Goomph
uses: actions/cache@v1
with:
path: ~/.goomph
key: ${{ runner.os }}-goomph-${{ hashFiles('build.gradle') }}
restore-keys: ${{ runner.os }}-goomph-
- name: 'Set up JDK 8'
uses: actions/setup-java@v2
with:
java-version: 8
distribution: 'temurin'
- name: 'Publish'
env:
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
uses: gradle/gradle-build-action@v2
with:
arguments: publishAllPublicationsToMavenRepository