Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down Expand Up @@ -241,6 +241,9 @@

- name: Start Docker containers
if: matrix.test-suite.name == 'default'
env:
# The HDFS fixture needs host networking; opt in here (Linux only).
COMPOSE_PROFILES: hdfs
run: make docker-up

- name: Run tests
Expand All @@ -251,6 +254,9 @@
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_BUCKET: ${{ secrets.HF_BUCKET }}
HF_DATASET: ${{ secrets.HF_DATASET }}
# HDFS integration tests self-skip when unset; see
# crates/storage/opendal/tests/file_io_hdfs_test.rs
ICEBERG_TEST_HDFS_ENDPOINT: hdfs://localhost:8020
run: |
if [ "${{ matrix.test-suite.name }}" = "default" ]; then
cargo nextest run ${{ matrix.test-suite.args }}
Expand Down
Loading
Loading