We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4271b40 commit afce8bbCopy full SHA for afce8bb
.github/workflows/maven.yml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
fail-fast: false
17
matrix:
18
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
19
runs-on: ${{ matrix.os }}
20
timeout-minutes: 45
21
m2e-parent/pom.xml
@@ -247,6 +247,18 @@
247
</plugins>
248
</build>
249
</profile>
250
+ <profile>
251
+ <id>windows</id>
252
+ <activation>
253
+ <os>
254
+ <family>windows</family>
255
+ </os>
256
+ </activation>
257
+ <properties>
258
+ <!-- The Tycho baselinging does not yet work well on Windows. Temporarily skip it until it is fixed.-->
259
+ <tycho.baseline.skip>true</tycho.baseline.skip>
260
+ </properties>
261
+ </profile>
262
</profiles>
263
264
<developers>
0 commit comments