viirya commented on code in PR #2449: URL: https://github.com/apache/arrow-rs/pull/2449#discussion_r946078256
########## .github/workflows/integration.yml: ########## @@ -46,22 +69,47 @@ jobs: with: path: rust fetch-depth: 0 - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: 3.8 - - name: Setup Archery - run: pip install -e dev/archery[docker] - - name: Execute Docker Build - run: archery docker run -e ARCHERY_INTEGRATION_WITH_RUST=1 conda-integration + - name: Make build directory + run: mkdir /build + - name: Build Rust + run: conda run --no-capture-output ci/scripts/rust_build.sh $PWD /build + - name: Build C++ + 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 + - 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: Install archery + run: conda run --no-capture-output pip install -e dev/archery + - name: Run integration tests + run: | + conda run --no-capture-output archery integration \ Review Comment: Do we need `conda run` for each commend? I think the docker image enables the conda environment by default? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org