-
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (33 loc) · 1.07 KB
/
build-windows.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
name: Windows
on: [ push, pull_request ]
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
java_version: [ 11 ]
steps:
- uses: actions/checkout@v4
- name: "Set up JDK ${{ matrix.java_version }}"
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: ${{ matrix.java_version }}
- name: Setup Gradle
uses: gradle/[email protected]
- name: build
env:
JAVA_VERSION: ${{ matrix.java_version }}
run: ./gradlew build --no-daemon
- name: Upload build code coverage
uses: codecov/[email protected]
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
env:
JAVA_VERSION: ${{ matrix.java_version }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: current_windows
env_vars: JAVA_VERSION
# too many timeout errors, let's not fail at the moment
#fail_ci_if_error: true