-
Notifications
You must be signed in to change notification settings - Fork 873
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run smoke tests on Windows as well (#2617)
* Run smoke tests on Windows as well * Allow long paths on windows * Allow long paths on windows * Polish * Add check that spans were generated by expected OS * Fix method name * Use proper extra tag * Use long paths on CI build on Windows * Don't run linux test images on Windows * Don't run linux test images on Windows * Typo * More debug * Don't use testcontainers on Windows * Polish * Update backend * Support for extra resources on linux * Trying Linux backend on Windows * Pull backend images if not found * We do use windows images for backend as well * Use correct windows images * Less logs * Polish * Better logs * Polish * Polish
- Loading branch information
Showing
32 changed files
with
1,091 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,29 @@ jobs: | |
run: ./gradlew build --stacktrace | ||
working-directory: examples/distro | ||
|
||
smoke-test-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Support longpaths | ||
run: git config --system core.longpaths true | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up JDK 11 for running Gradle | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Restore cache | ||
uses: burrunan/[email protected] | ||
with: | ||
job-id: smokeTests | ||
|
||
- name: Test | ||
run: ./gradlew :smoke-tests:test | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.