@@ -120,53 +120,53 @@ jobs:
120120 cargo run --example read_csv_infer_schema
121121
122122 # test the --features "simd" of the arrow crate. This requires nightly.
123- linux-test-simd :
124- name : Test SIMD on AMD64 Rust ${{ matrix.rust }}
125- runs-on : ubuntu-latest
126- strategy :
127- matrix :
128- arch : [amd64]
129- rust : []
130- container :
131- image : ${{ matrix.arch }}/rust
132- env :
133- # Disable full debug symbol generation to speed up CI build and keep memory down
134- # "1" means line tables only, which is useful for panic tracebacks.
135- RUSTFLAGS : " -C debuginfo=1"
136- ARROW_TEST_DATA : /__w/arrow-rs/arrow-rs/testing/data
137- steps :
138- - uses : actions/checkout@v2
139- with :
140- submodules : true
141- - name : Cache Cargo
142- uses : actions/cache@v2
143- with :
144- path : /github/home/.cargo
145- # this key equals the ones on `linux-build-lib` for re-use
146- key : cargo-cache-
147- - name : Cache Rust dependencies
148- uses : actions/cache@v2
149- with :
150- path : /github/home/target
151- # this key equals the ones on `linux-build-lib` for re-use
152- key : ${{ runner.os }}-${{ matrix.arch }}-target-cache-${{ matrix.rust }}
153- - name : Setup Rust toolchain
154- run : |
155- rustup toolchain install ${{ matrix.rust }}
156- rustup default ${{ matrix.rust }}
157- rustup component add rustfmt
158- - name : Run tests
159- run : |
160- export CARGO_HOME="/github/home/.cargo"
161- export CARGO_TARGET_DIR="/github/home/target"
162- cd arrow
163- cargo test --features "simd"
164- - name : Check new project build with simd features
165- run : |
166- export CARGO_HOME="/github/home/.cargo"
167- export CARGO_TARGET_DIR="/github/home/target"
168- cd arrow/test/dependency/simd
169- cargo check
123+ # linux-test-simd:
124+ # name: Test SIMD on AMD64 Rust ${{ matrix.rust }}
125+ # runs-on: ubuntu-latest
126+ # strategy:
127+ # matrix:
128+ # arch: [amd64]
129+ # rust: []
130+ # container:
131+ # image: ${{ matrix.arch }}/rust
132+ # env:
133+ # # Disable full debug symbol generation to speed up CI build and keep memory down
134+ # # "1" means line tables only, which is useful for panic tracebacks.
135+ # RUSTFLAGS: "-C debuginfo=1"
136+ # ARROW_TEST_DATA: /__w/arrow-rs/arrow-rs/testing/data
137+ # steps:
138+ # - uses: actions/checkout@v2
139+ # with:
140+ # submodules: true
141+ # - name: Cache Cargo
142+ # uses: actions/cache@v2
143+ # with:
144+ # path: /github/home/.cargo
145+ # # this key equals the ones on `linux-build-lib` for re-use
146+ # key: cargo-cache-
147+ # - name: Cache Rust dependencies
148+ # uses: actions/cache@v2
149+ # with:
150+ # path: /github/home/target
151+ # # this key equals the ones on `linux-build-lib` for re-use
152+ # key: ${{ runner.os }}-${{ matrix.arch }}-target-cache-${{ matrix.rust }}
153+ # - name: Setup Rust toolchain
154+ # run: |
155+ # rustup toolchain install ${{ matrix.rust }}
156+ # rustup default ${{ matrix.rust }}
157+ # rustup component add rustfmt
158+ # - name: Run tests
159+ # run: |
160+ # export CARGO_HOME="/github/home/.cargo"
161+ # export CARGO_TARGET_DIR="/github/home/target"
162+ # cd arrow
163+ # cargo test --features "simd"
164+ # - name: Check new project build with simd features
165+ # run: |
166+ # export CARGO_HOME="/github/home/.cargo"
167+ # export CARGO_TARGET_DIR="/github/home/target"
168+ # cd arrow/test/dependency/simd
169+ # cargo check
170170
171171 windows-and-macos :
172172 name : Test on ${{ matrix.os }} Rust ${{ matrix.rust }}
0 commit comments