Skip to content

Commit d874848

Browse files
committed
Run GH verification build on Windows too
Fixes #1080
1 parent 92aa45c commit d874848

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
@@ -244,6 +244,18 @@
244244
</plugins>
245245
</build>
246246
</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>
247259
</profiles>
248260

249261
<developers>

0 commit comments

Comments
 (0)