Skip to content

Commit

Permalink
Removed windows go upgrade from circle ci
Browse files Browse the repository at this point in the history
Signed-off-by: Corbin Phelps <corbin.phelps@bluemedora.com>
  • Loading branch information
Corbin Phelps committed Feb 11, 2022
1 parent 715a2fb commit 1239c47
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ executors:
xcode: 11.4.1

jobs:

build:
executor: golang
steps:
Expand Down Expand Up @@ -201,7 +200,7 @@ jobs:
name: Run Unit Tests
command: make test
- codecov/upload:
file: '**/coverage.txt'
file: "**/coverage.txt"

#test-linux-arm64:
# machine:
Expand Down Expand Up @@ -250,10 +249,11 @@ jobs:

steps:
- checkout
- run:
name: Upgrade Golang
shell: powershell.exe
command: choco upgrade golang --version=1.17
# Windows boxes now come with Go 1.17.6 installed https://circleci.com/docs/2.0/hello-world-windows/#software-pre-installed-in-the-windows-image
# - run:
# name: Upgrade Golang
# shell: powershell.exe
# command: choco upgrade golang --version=1.17
- run:
name: Install GCC
shell: powershell.exe
Expand Down Expand Up @@ -343,7 +343,8 @@ jobs:
- run:
name: Setup VM Workspace
command: gcloud compute ssh << parameters.instance >> --ssh-key-file=~/.ssh/key --ssh-flag="-o LogLevel=QUIET" -- 'mkdir -p ~/benchmark/out' &&
command:
gcloud compute ssh << parameters.instance >> --ssh-key-file=~/.ssh/key --ssh-flag="-o LogLevel=QUIET" -- 'mkdir -p ~/benchmark/out' &&
gcloud compute scp --ssh-key-file=~/.ssh/key ./bin/stanza << parameters.instance >>:~/benchmark/ &&
gcloud compute scp --ssh-key-file=~/.ssh/key ./bin/logbench << parameters.instance >>:~/benchmark/ &&
gcloud compute scp --ssh-key-file=~/.ssh/key ./.circleci/testdata/benchmark.yaml << parameters.instance >>:~/benchmark/config.yaml &&
Expand Down

0 comments on commit 1239c47

Please sign in to comment.