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/06/29 10:33:55 UTC

[GitHub] [arrow-experimental-rs-parquet2] Jimexist commented on a change in pull request #1: Adds parquet2

Jimexist commented on a change in pull request #1:
URL: https://github.com/apache/arrow-experimental-rs-parquet2/pull/1#discussion_r660490289



##########
File path: .github/workflows/test.yml
##########
@@ -0,0 +1,119 @@
+name: Check and test
+
+on: [push, pull_request]
+
+jobs:
+  # test the crate
+  linux-test:
+    name: Test
+    runs-on: ubuntu-latest
+    container:
+      image: amd64/rust
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          submodules: true
+      - name: Cache Cargo
+        uses: actions/cache@v2
+        with:
+          path: /github/home/.cargo
+          # these represent dependencies downloaded by cargo
+          # and thus do not depend on the OS, arch nor rust version.
+          key: cargo-cache-
+      - name: Cache dependencies
+        uses: actions/cache@v2
+        with:
+          path: /github/home/target
+          # these represent compiled steps of both dependencies and arrow
+          # and thus are specific for a particular OS, arch and rust version.
+          key: ${{ runner.os }}-amd64-target-cache-stable
+      - name: Setup parquet files
+        run: |
+          apt update && apt install python3-pip python3-venv -y -q
+          python3 -m venv venv
+          venv/bin/pip install pip --upgrade
+          venv/bin/pip install pyarrow==3

Review comment:
       use 4.0.1? https://pypi.org/project/pyarrow/




-- 
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-unsubscribe@arrow.apache.org

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