Skip to content

Commit

Permalink
Run GH verification build on Windows too
Browse files Browse the repository at this point in the history
Fixes #1080
  • Loading branch information
HannesWell committed Dec 31, 2022
1 parent 9f16486 commit 0afc295
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 45

Expand Down
12 changes: 12 additions & 0 deletions m2e-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,18 @@
</plugins>
</build>
</profile>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<!-- The Tycho baselinging does not yet work well on Windows. Temporarily skip it until it is fixed.-->
<tycho.baseline.skip>true</tycho.baseline.skip>
</properties>
</profile>
</profiles>

<developers>
Expand Down

0 comments on commit 0afc295

Please sign in to comment.