-
-
Notifications
You must be signed in to change notification settings - Fork 693
87 lines (84 loc) · 2.5 KB
/
build.yml
File metadata and controls
87 lines (84 loc) · 2.5 KB
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
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
DISPLAY: :99
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ 17 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v6
- name: Set up Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Start Xvfb
if: matrix.os == 'ubuntu-latest'
run: |
Xvfb $DISPLAY &
- name: Install browsers in macOS
if: matrix.os == 'macos-latest'
run: |
brew install --cask firefox
/Applications/Firefox.app/Contents/MacOS/firefox --version
brew install --cask microsoft-edge
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge" -version
- name: Run tests on Linux
if: matrix.os == 'ubuntu-latest'
uses: nick-invision/[email protected]
with:
timeout_minutes: 30
max_attempts: 3
command: |
mvn -B test
- name: Run tests on Windows and macOS
if: matrix.os != 'ubuntu-latest'
uses: nick-invision/[email protected]
with:
timeout_minutes: 30
max_attempts: 3
command: |
mvn -B test -Dtest=!Docker*
- name: Upload analysis to SonarCloud
if: success() && matrix.os == 'ubuntu-latest' && !contains(github.ref, 'pull')
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:webdrivermanager
- name: Upload coverage to Codecov
if: success() && matrix.os == 'ubuntu-latest' && !contains(github.ref, 'pull')
uses: codecov/[email protected]
- name: Store recordings on Linux
if: always() && matrix.os == 'ubuntu-latest'
uses: actions/[email protected]
with:
name: linux-recordings
path: |
*.webm
- name: Store recordings on Windows
if: always() && matrix.os == 'windows-latest'
uses: actions/[email protected]
with:
name: win-recordings
path: |
*.webm
- name: Store recordings on macOS
if: always() && matrix.os == 'macos-latest'
uses: actions/[email protected]
with:
name: macos-recordings
path: |
*.webm