This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 326ea5e1d Temporarily disable Golang integration tests re-enabled JS
(#2689)
326ea5e1d is described below
commit 326ea5e1d5272a566439c0d5dc44d083421066d8
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Thu Sep 8 16:55:36 2022 +0100
Temporarily disable Golang integration tests re-enabled JS (#2689)
---
.github/workflows/integration.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/integration.yml
b/.github/workflows/integration.yml
index 10a8e3021..242fc3d85 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -77,13 +77,13 @@ jobs:
run: conda run --no-capture-output ci/scripts/cpp_build.sh $PWD /build
- name: Build C#
run: conda run --no-capture-output ci/scripts/csharp_build.sh $PWD
/build
- - name: Build Go
- run: conda run --no-capture-output ci/scripts/go_build.sh $PWD
+ # Temporarily disable Golang #2688
+ # - name: Build Go
+ # run: conda run --no-capture-output ci/scripts/go_build.sh $PWD
- name: Build Java
run: conda run --no-capture-output ci/scripts/java_build.sh $PWD /build
- # Temporarily disable JS
https://issues.apache.org/jira/browse/ARROW-17410
- # - name: Build JS
- # run: conda run --no-capture-output ci/scripts/js_build.sh $PWD /build
+ - name: Build JS
+ run: conda run --no-capture-output ci/scripts/js_build.sh $PWD /build
- name: Install archery
run: conda run --no-capture-output pip install -e dev/archery
- name: Run integration tests
@@ -93,8 +93,8 @@ jobs:
--with-cpp=1 \
--with-csharp=1 \
--with-java=1 \
- --with-js=0 \
- --with-go=1 \
+ --with-js=1 \
+ --with-go=0 \
--with-rust=1 \
--gold-dirs=testing/data/arrow-ipc-stream/integration/0.14.1 \
--gold-dirs=testing/data/arrow-ipc-stream/integration/0.17.1 \