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 d5c25f9 commit 52e67b3Copy full SHA for 52e67b3
.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
@@ -244,6 +244,18 @@
244
</plugins>
245
</build>
246
</profile>
247
+ <profile>
248
+ <id>windows</id>
249
+ <activation>
250
+ <os>
251
+ <family>windows</family>
252
+ </os>
253
+ </activation>
254
+ <properties>
255
+ <!-- The Tycho baselinging does not yet work well on Windows. Temporarily skip it until it is fixed.-->
256
+ <tycho.baseline.skip>true</tycho.baseline.skip>
257
+ </properties>
258
+ </profile>
259
</profiles>
260
261
<developers>
0 commit comments