Skip to content

Commit

Permalink
Temporarily disable windows builds (#324 / #342)
Browse files Browse the repository at this point in the history
In #324 it is stated out that quite often
the builds on Windows time out, most probably
because of some kind of deadlock when executing
tests in parallel, not because there are errors.

When a build fails, the release workflow is
blocked, preventing us to release.

We decided to disable the Windows build temporarily
to enable releases.

related to: #324
PR: #342
  • Loading branch information
Bukama authored Sep 26, 2020
1 parent be539f8 commit 1618f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 8, 11, 14 ]
os: [ubuntu, windows, macos]
os: [ubuntu, macos]
name: with Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- name: Check out repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/module-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
# test against latest update of each major Java 11+ version, as well as specific updates of LTS versions:
java: [ 11, 14 ]
os: [ubuntu, windows, macos]
os: [ubuntu, macos]
name: with Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- name: Check out repo
Expand Down

0 comments on commit 1618f50

Please sign in to comment.