Skip to content

Commit

Permalink
ci(github): 👷 refactor for potential multi-arch testing
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed May 25, 2024
1 parent e78ad29 commit e4d2e94
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ permissions:

env:
GO_VERSION: 1.22
ARCH: amd64

jobs:
test:
Expand All @@ -27,8 +28,7 @@ jobs:
fetch-depth: 0
- name: Set up environment
run: |
# echo "APPVERSION=$(git describe --tags --abbrev=0)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "BUILD_ENV=build/env.amd64" >> $GITHUB_ENV
echo "BUILD_ENV=build/env.$ARCH" >> $GITHUB_ENV
- name: Install build dependencies
id: install_packages
run: build/scripts/install-deps
Expand Down Expand Up @@ -68,8 +68,7 @@ jobs:
cache: false # golangci-lint maintains its own cache
- name: Set up environment
run: |
# echo "APPVERSION=$(git describe --tags --abbrev=0)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "BUILD_ENV=build/env.amd64" >> $GITHUB_ENV
echo "BUILD_ENV=build/env.$ARCH" >> $GITHUB_ENV
- name: Install build dependencies
id: install_packages
run: build/scripts/install-deps
Expand Down

0 comments on commit e4d2e94

Please sign in to comment.