Skip to content

Commit

Permalink
Rebased and addressd renaming changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shovnik committed Dec 21, 2020
1 parent a10d182 commit d4fe694
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand All @@ -47,11 +47,11 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -91,11 +91,11 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -124,11 +124,11 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -163,11 +163,11 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -217,11 +217,11 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
Expand Down Expand Up @@ -310,12 +310,12 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
mkdir bin/
- name: Cache Modules
- name: Cache Go Modules
uses: actions/cache@v2
env:
cache-name: cache-go-modules
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
Expand Down Expand Up @@ -410,7 +410,7 @@ jobs:
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- name: Setup Environment
- name: Setup Go Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/setup_load_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ else
fi
done
MATRIX+="]}"
echo "::set-output name=matrix::$MATRIX"
echo "::set-output name=matrix::$MATRIX"
2 changes: 0 additions & 2 deletions .github/workflows/scripts/verify-dist-files-exist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ do
then
echo "$f does not exist."
echo "::set-output name=passed::false"
echo "::set-output name=failed::true"
exit 0
fi
done
echo "::set-output name=passed::true"
echo "::set-output name=failed::false"

0 comments on commit d4fe694

Please sign in to comment.