You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/05/03 13:37:32 UTC

[GitHub] [arrow] kszucs opened a new pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

kszucs opened a new pull request #10225:
URL: https://github.com/apache/arrow/pull/10225


   Disable the rust integration tests by default.
   
   In order to execute the rust integration tests as well pass `ARCHERY_INTEGRATION_WITH_RUST=1` environment variable to the docker container.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] kszucs commented on a change in pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
kszucs commented on a change in pull request #10225:
URL: https://github.com/apache/arrow/pull/10225#discussion_r625385562



##########
File path: .github/workflows/integration.yml
##########
@@ -82,7 +80,7 @@ jobs:
       - name: Setup Archery
         run: pip install -e dev/archery[docker]
       - name: Execute Docker Build
-        run: archery docker run conda-integration
+        run: archery docker run -e ARCHERY_INTEGRATION_WITH_RUST=1 conda-integration

Review comment:
       @jorgecarleitao @andygrove @alamb you'll need to update the integration workflow in arrow-rs once we merge this




-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] kszucs commented on pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
kszucs commented on pull request #10225:
URL: https://github.com/apache/arrow/pull/10225#issuecomment-831848928


   @pitrou verified locally that `archery run conda-integration` works


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] pitrou closed pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
pitrou closed pull request #10225:
URL: https://github.com/apache/arrow/pull/10225


   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] jorgecarleitao commented on a change in pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
jorgecarleitao commented on a change in pull request #10225:
URL: https://github.com/apache/arrow/pull/10225#discussion_r625478231



##########
File path: .github/workflows/integration.yml
##########
@@ -82,7 +80,7 @@ jobs:
       - name: Setup Archery
         run: pip install -e dev/archery[docker]
       - name: Execute Docker Build
-        run: archery docker run conda-integration
+        run: archery docker run -e ARCHERY_INTEGRATION_WITH_RUST=1 conda-integration

Review comment:
       fielded https://github.com/apache/arrow-rs/pull/253 




-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] github-actions[bot] commented on pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on pull request #10225:
URL: https://github.com/apache/arrow/pull/10225#issuecomment-831264761


   https://issues.apache.org/jira/browse/ARROW-12630


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] pitrou commented on pull request #10225: ARROW-12630: [Dev][Integration] conda-integration docker build fails

Posted by GitBox <gi...@apache.org>.
pitrou commented on pull request #10225:
URL: https://github.com/apache/arrow/pull/10225#issuecomment-831303100


   This doesn't seem to be sufficient. I get the following error (multiple times):
   ```
   ==========================================================
   Testing file /tmp/arrow-integration-_9i6ftux/generated_null_trivial.json
   ==========================================================
   -- Creating binary inputs
   -- Validating file
   Traceback (most recent call last):
     File "/arrow/dev/archery/archery/integration/runner.py", line 213, in _run_ipc_test_case
       run_binaries(producer, consumer, outcome, test_case)
     File "/arrow/dev/archery/archery/integration/runner.py", line 239, in _produce_consume
       consumer.validate(json_path, producer_file_path)
     File "/arrow/dev/archery/archery/integration/tester_rust.py", line 64, in validate
       return self._run(arrow_path, json_path, 'VALIDATE')
     File "/arrow/dev/archery/archery/integration/tester_rust.py", line 61, in _run
       run_cmd(cmd)
     File "/arrow/dev/archery/archery/integration/util.py", line 139, in run_cmd
       output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
     File "/opt/conda/envs/arrow/lib/python3.8/subprocess.py", line 415, in check_output
       return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
     File "/opt/conda/envs/arrow/lib/python3.8/subprocess.py", line 493, in run
       with Popen(*popenargs, **kwargs) as process:
     File "/opt/conda/envs/arrow/lib/python3.8/subprocess.py", line 858, in __init__
       self._execute_child(args, executable, preexec_fn, close_fds,
     File "/opt/conda/envs/arrow/lib/python3.8/subprocess.py", line 1706, in _execute_child
       raise child_exception_type(errno_num, err_msg, err_filename)
   FileNotFoundError: [Errno 2] No such file or directory: '/arrow/rust/target/debug/arrow-json-integration-test'
   ```


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org