forked from prometheus/prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tsdb code and tests to work on Windows. (prometheus#6547)
Add back Windows CI, we lost it when tsdb was merged into the prometheus repo. There's many tests failing outside tsdb, so only test tsdb for now. Fixes prometheus#6513 Signed-off-by: Brian Brazil <[email protected]>
- Loading branch information
1 parent
8744510
commit ada0945
Showing
6 changed files
with
36 additions
and
7 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ version: 2.1 | |
orbs: | ||
prometheus: prometheus/[email protected] | ||
go: circleci/[email protected] | ||
win: circleci/[email protected] | ||
|
||
executors: | ||
# Whenever the Go version is updated here, .promu.yml | ||
|
@@ -49,6 +50,13 @@ jobs: | |
key: v1-npm-deps-{{ checksum "web/ui/react-app/yarn.lock" }} | ||
paths: | ||
- web/ui/react-app/node_modules | ||
test_windows: | ||
executor: win/default | ||
working_directory: /go/src/github.com/prometheus/prometheus | ||
steps: | ||
- checkout | ||
# TSDB is where the most risk is Windows wise, so only test there for now. | ||
- run: go test ./tsdb/... | ||
fuzzit_regression: | ||
executor: fuzzit | ||
working_directory: /go/src/github.com/prometheus/prometheus | ||
|
@@ -78,6 +86,10 @@ workflows: | |
filters: | ||
tags: | ||
only: /.*/ | ||
- test_windows: | ||
filters: | ||
tags: | ||
only: /.*/ | ||
- fuzzit_regression: | ||
filters: | ||
tags: | ||
|
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
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