Skip to content

Commit

Permalink
Try more powershelly command
Browse files Browse the repository at this point in the history
  • Loading branch information
djaglowski committed Sep 1, 2020
1 parent aa15f29 commit e0a3134
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,29 +140,29 @@ jobs:
shell: powershell.exe
command: >
go test -race ./...; `
cd ./cmd/stanza; go test -race ./...; cd ../..; `
cd ./operator/builtin/input/file; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/input/journald; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/input/windows; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/input/k8sevent; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/input/tcp; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/input/udp; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/output/elastic; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/output/file; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/output/googlecloud; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/output/stdout; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/parser/json; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/parser/regex; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/parser/severity; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/parser/syslog; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/parser/time; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/filter; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/hostmetadata; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/k8smetadata; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/metadata; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/ratelimit; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/restructure; go test -race ./...; cd ../../../..; `
cd ./operator/builtin/transformer/router; go test -race ./...; cd ../../../..;
Push-Location; Set-Location ./cmd/stanza; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/file; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/journald; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/windows; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/k8sevent; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/tcp; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/input/udp; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/output/elastic; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/output/file; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/output/googlecloud; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/output/stdout; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/parser/json; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/parser/regex; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/parser/severity; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/parser/syslog; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/parser/time; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/filter; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/hostmetadata; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/k8smetadata; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/metadata; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/ratelimit; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/restructure; go test -race ./...; Pop-Location; `
Push-Location; Set-Location ./operator/builtin/transformer/router; go test -race ./...; Pop-Location;
run-benchmark:
parameters:
Expand Down

0 comments on commit e0a3134

Please sign in to comment.