Skip to content

Commit 3483b71

Browse files
committed
update build.yaml
1 parent 17904ec commit 3483b71

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright © 2019 The GWT Project Authors
2+
# Copyright © 2018 The GWT Project Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -14,28 +14,19 @@
1414
# limitations under the License.
1515
#
1616

17-
# This workflow will build a Java project with Maven
18-
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
19-
2017
name: CI
2118

2219
on: [push, pull_request]
2320

2421
jobs:
2522
build:
26-
2723
runs-on: ubuntu-latest
28-
strategy:
29-
matrix:
30-
java_version: [ 8 ]
3124

3225
steps:
3326
- uses: actions/checkout@v2
34-
- name: Set up ${{ matrix.java_version }}
35-
uses: actions/setup-java@v1
36-
with:
37-
java-version: ${{ matrix.java_version }}
27+
28+
# TODO: cache dependencies (taking into accounts: Maven plugins, snapshots, etc.)
3829

3930
- name: Build with Maven
40-
run: mvn -B verify -V -B -ntp -e
31+
run: JAVA_HOME=$JAVA_HOME_8_X64 mvn -V -B -ntp -U -e verify
4132

0 commit comments

Comments
 (0)