Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1b7bbb6
Satisfy testing on macOS
amotl Oct 28, 2020
f2b5c7b
CI: Adjust CrateDB version in versions.cfg only on Linux
amotl Nov 3, 2020
edeb599
Attempt to mitigate "Failed to start Crate instance in time"
amotl Nov 3, 2020
18b332f
CI: Enable testing on Windows
amotl Nov 3, 2020
a9920f0
CI: Use "bash" when running on Windows
amotl Nov 3, 2020
ea3fee2
CI: Disable firewall on Windows before running tests
amotl Nov 3, 2020
769c627
CI: Attempt to mitigate CrateDB bootstrap errors on Windows
amotl Nov 3, 2020
9cba456
CI: Another attempt to mitigate "Unrecognized Windows Sockets error: …
amotl Nov 3, 2020
f589521
CI: Another attempt to mitigate "Unrecognized Windows Sockets error: …
amotl Nov 3, 2020
3e788da
CI: Disable IPv6 on Windows
amotl Nov 3, 2020
3a1c22f
CI: Attempt to fix Windows by setting SystemRoot env variable
amotl Nov 5, 2020
a2c86cf
CI: Fix Windows path handling
amotl Nov 5, 2020
c87dc71
CI: Improve logging to find out about any errors when starting CrateDB
amotl Nov 5, 2020
39fbad7
CI: Improve logging to find out about any errors when starting CrateDB
amotl Nov 5, 2020
8717536
CI: Fix path computation for Windows again
amotl Nov 5, 2020
0d0c4c4
CI: Give test layer some more time to tear down on Windows
amotl Nov 5, 2020
100aa9f
CI: Add comment
amotl Nov 5, 2020
18e60c3
CI: Give test layer some more time to tear down on Windows
amotl Nov 5, 2020
2a73fdd
CI: Ignore test layer timeout on tear down on Windows
amotl Nov 5, 2020
0e5533f
CI: Improve layer shutdown behaviour
amotl Nov 5, 2020
04ebe12
CI: Adjust GHA/Windows
amotl Nov 5, 2020
cb54ce8
CI: GHA/Windows again
amotl Nov 5, 2020
f5abad9
fixup! CI: Adjust CrateDB version in versions.cfg only on Linux
amotl May 25, 2022
7f8ca8b
Sandbox: Update zc.buildout to 2.13.7
amotl May 25, 2022
7d45ba0
CI: Don't fail fast when invoking the test matrix
amotl May 25, 2022
73b94ad
CI: Fix finding `bin/test` on Windows
amotl May 25, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
CI: Disable firewall on Windows before running tests
  • Loading branch information
amotl committed May 25, 2022
commit ea3fee212aba45024ba29a1fa302290520534299
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
run: |
./devtools/setup_ci.sh --cratedb-version=${{ matrix.cratedb-version }} --sqlalchemy-version=${{ matrix.sqla-version }}

- name: Fix Windows environment
if: matrix.os == 'windows-2019'
shell: bash
run: |
# Disable firewall.
netsh advfirewall set allprofiles state off

- name: Invoke tests
shell: bash
run: |
Expand Down