This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 28e6d3649a MINOR: [Go][CI] Fix indentation and syntax for yml file
(#34490)
28e6d3649a is described below
commit 28e6d3649a4f5e6adcd5ca912886bd210acc1c4d
Author: Matt Topol <[email protected]>
AuthorDate: Tue Mar 7 16:45:55 2023 -0500
MINOR: [Go][CI] Fix indentation and syntax for yml file (#34490)
Fixing issue caused by #34488
Lead-authored-by: Matt Topol <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Matt Topol <[email protected]>
---
.github/workflows/go.yml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index e779a4c431..59c23c2e7b 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -306,11 +306,13 @@ jobs:
run: brew install apache-arrow pkg-config
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@${{
matrix.staticcheck }}
- - name: Build
+ - name: Add To pkg config path
shell: bash
run: |
- echo
"PKG_CONFIG_PATH=/usr/local/Cellar/openssl@3/3.0.8/lib/pkgconfig:$PKG_CONFIG_PATH"
>> $GITHUB_ENV
- ci/scripts/go_build.sh $(pwd)
+ echo "PKG_CONFIG_PATH=$(brew --prefix
openssl@3)/lib/pkgconfig:$PKG_CONFIG_PATH" >> $GITHUB_ENV
+ - name: Build
+ shell: bash
+ run: ci/scripts/go_build.sh $(pwd)
- name: Test
shell: bash
run: ci/scripts/go_test.sh $(pwd)
@@ -374,7 +376,7 @@ jobs:
linux-arm:
name: ARM64 Debian 11 GO ${{ matrix.go }}
- runs-on: ["arm", "linux"]
+ runs-on: ["self-hosted", "linux"]
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 60
strategy: