Skip to content

Commit afce8bb

Browse files
committed
Run GH verification build on Windows too
Fixes #1080
1 parent 4271b40 commit afce8bb

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
18+
os: [ubuntu-latest, windows-latest, macos-latest]
1919
runs-on: ${{ matrix.os }}
2020
timeout-minutes: 45
2121

m2e-parent/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,18 @@
247247
</plugins>
248248
</build>
249249
</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>
250262
</profiles>
251263

252264
<developers>

0 commit comments

Comments
 (0)