Merge pull request #396 from meilisearch/disable-windows-tests

Disable windows tests
This commit is contained in:
Clément Renault 2019-12-10 18:03:13 +01:00 committed by GitHub
commit dcd332e2e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -8,4 +8,11 @@
- On each pull request, we are triggering `cargo test`.
- On each commit on master, we are building the latest docker image.
- On each tag, we are building the tagged docker image, the binaries for MacOS & Ubuntu, and the debian package.
- On each tag, we are building:
- the tagged docker image
- the binaries for MacOS, Ubuntu, and Windows
- the debian package
## Problems
- We do not test on Windows because we are unable to make it work, there is a disk space problem.

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1