Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Commit 73c28fe

Browse files
committed
[BAHIR-320] Migrate travis to github actions
1 parent 692ccb5 commit 73c28fe

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

.travis.yml renamed to .github/workflows/distribution-ci.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,28 @@
1515
# limitations under the License.
1616
#
1717

18-
language: java
18+
name: Distribution
1919

20-
jdk:
21-
- openjdk8
22-
- oraclejdk8
20+
on:
21+
push:
22+
branches: [ master ]
2323

24-
dist: trusty
24+
jobs:
25+
build:
2526

26-
script:
27-
- mvn -Pdistribution clean install
27+
runs-on: ubuntu-latest
28+
strategy:
29+
matrix:
30+
java: ['8']
31+
32+
steps:
33+
- uses: actions/checkout@v2
34+
- name: Set up JDK ${{ matrix.java }}
35+
uses: actions/setup-java@v2
36+
with:
37+
java-version: ${{ matrix.java }}
38+
distribution: 'zulu'
39+
cache: maven
40+
41+
- name: Build
42+
run: mvn -Pdistribution clean install

0 commit comments

Comments
 (0)