Skip to content

Commit 5094125

Browse files
committed
Run GH verification build on Windows too
Fixes #1080
1 parent aebff3e commit 5094125

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/maven.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ 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

2222
steps:
23+
- run: |
24+
git config --system core.autocrlf false
25+
git config --system core.eol lf
26+
if: matrix.os == 'windows-latest'
2327
- uses: actions/checkout@v3
2428
with:
2529
fetch-depth: 0

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-disabled</id>
252+
<activation>
253+
<os>
254+
<family>windows-not</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)