-
Notifications
You must be signed in to change notification settings - Fork 10
112 lines (102 loc) · 3.37 KB
/
mainidewindow.toolwindowspane.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle - mainidewindow.toolwindowspane
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run integration tests
run: |
export DISPLAY=:99.0
Xvfb -ac :99 -screen 0 1920x1080x24 &
cd src/test-project
chmod +x gradlew
./gradlew clean test --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
- uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-test-reports
path: src/test-project/build/reports/tests/test
if: always()
- name: Archiving screenshots
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-screenshots
path: src/test-project/build/screenshots/*
if: always()
- name: Archiving StepLogger logs
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-steplogger-logs
path: src/test-project/build/test-results/*
if: always()
build-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run integration tests
run: |
cd src/test-project
chmod +x gradlew
./gradlew clean test --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
- uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-test-reports
path: src/test-project/build/reports/tests/test
if: always()
- name: Archiving screenshots
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-screenshots
path: src/test-project/build/screenshots/*
if: always()
- name: Archiving StepLogger logs
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-steplogger-logs
path: src/test-project/build/test-results/*
if: always()
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run integration tests
run: |
cd src\test-project
chmod +x gradlew.bat
.\gradlew.bat clean test --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
shell: powershell
- uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-test-reports
path: src\test-project\build\reports\tests\test
if: always()
- name: Archiving screenshots
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-screenshots
path: src\test-project\build\screenshots\*
if: always()
- name: Archiving StepLogger logs
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-steplogger-logs
path: src\test-project\build\test-results\*
if: always()