forked from Eventual-Inc/Daft
-
Notifications
You must be signed in to change notification settings - Fork 0
1679 lines (1614 loc) · 57.4 KB
/
pr-test-suite.yml
File metadata and controls
1679 lines (1614 loc) · 57.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: PR test suite
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:
env:
DAFT_ANALYTICS_ENABLED: "0"
RUST_BACKTRACE: 1
DAFT_PROGRESS_BAR: 0
# Cancel in-progress CI runs for outdated PR pushes to save resources.
# For pull requests, use the PR number to group runs.
# For pushes to main, i.e. not PRs, use the unique commit SHA to avoid canceling other CI runs.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
skipcheck:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.filter.outputs.skip }}
steps:
- uses: actions/checkout@v6
- name: Detect non-trivial changes
id: filter
run: |
set +e
set -xo pipefail
# On main branch, we want to run all tests (no skipping)
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
echo "skip=false" >> $GITHUB_OUTPUT
exit 0
fi
# For PRs, check if there are non-trivial changes
BASE=${{ github.base_ref || 'origin/main' }}
git fetch origin $BASE --depth=1
if git diff --quiet origin/$BASE -- \
. \
':!.vscode/**' \
':!docs/**' \
':!.git-blame-ignore-revs' \
':!.gitignore' \
':!.lldbinit' \
':!.readthedocs.yaml' \
':!CODE_OF_CONDUCT.md' \
':!CONTRIBUTING.md' \
':!LICENSE' \
':!README.rst' \
':!SECURITY.md' \
':!codecov.yml' \
':!mkdocs.yml' \
':!AGENTS.md'
then
echo "skip=true" >> $GITHUB_OUTPUT
else
echo "skip=false" >> $GITHUB_OUTPUT
fi
unit-test:
needs: skipcheck
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
runs-on: ${{ matrix.os }}
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
daft-runner: [ray, native]
pyarrow-version: ["22.0.0"]
os: [ubuntu-latest, macos-latest]
coverage: [true]
on-main:
- ${{ github.ref == 'refs/heads/main' }}
include:
# pyarrow compat test — runs without coverage instrumentation
- python-version: "3.10"
daft-runner: native
pyarrow-version: "8.0.0"
os: ubuntu-latest
on-main: ${{ github.ref == 'refs/heads/main' }}
coverage: false
exclude:
- python-version: "3.10"
os: macos-latest
# don't run mac unit tests in PRs
- os: macos-latest
on-main: false
steps:
- name: Free Disk Space (Ubuntu)
if: ${{ (runner.os == 'Linux') }}
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- name: Additional disk cleanup
if: ${{ (runner.os == 'Linux') }}
run: |
sudo rm -rf /usr/share/swift || true
sudo rm -rf /opt/hostedtoolcache/CodeQL || true
sudo rm -rf /opt/hostedtoolcache/go || true
sudo rm -rf /opt/hostedtoolcache/Ruby || true
sudo rm -rf /opt/hostedtoolcache/node || true
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/restore-mtime
- uses: moonrepo/setup-rust@v1
with:
cache: false
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-dev-build
cache-all-crates: "true"
cache-workspace-crates: "true"
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install cargo-llvm-cov
if: matrix.coverage != false
uses: taiki-e/install-action@cargo-llvm-cov
with:
tool: cargo-llvm-cov@0.7.1
- name: install llvm tools
if: matrix.coverage != false
run: rustup component add llvm-tools-preview
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Detect Conda home path
run: |
if command -v conda &> /dev/null; then
CONDA_HOME_PATH=$(conda info --base)
echo "Conda home is $CONDA_HOME_PATH"
echo "CONDA_HOME=$CONDA_HOME_PATH" >> $GITHUB_ENV
else
echo "::warning::Conda not detected."
fi
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
retry_wait_seconds: 10
command: |
uv sync --no-install-project --all-extras --all-groups
- name: Override pyarrow and pyiceberg
run: |
source .venv/bin/activate
PYARROW_VERSION="${{ matrix.pyarrow-version }}"
PYARROW_MAJOR="${PYARROW_VERSION%%.*}"
uv pip install pyarrow==${PYARROW_VERSION}
if [ "$PYARROW_MAJOR" -le 17 ]; then
uv pip install "pyiceberg==0.7.0"
fi
- name: Build library and Test with pytest (with coverage)
if: matrix.coverage != false
run: |
set -o pipefail
source .venv/bin/activate
cargo llvm-cov clean --workspace
maturin develop --uv
# Limit xdist workers on macOS: with only 3 CPUs, "-n auto" (3 workers) causes
# excessive resource contention when each worker spins up its own Ray cluster,
# leading to UDF actor scheduling timeouts.
# See runner specs: https://docs.github.com/en/actions/reference/runners/github-hosted-runners
if [ "$RUNNER_OS" == "macOS" ]; then PYTEST_WORKERS=2; else PYTEST_WORKERS=auto; fi
pytest --ignore tests/integration --collect-only -qq # run this to ensure no weird imports that result in `Collector` errors
pytest -n $PYTEST_WORKERS --cov=daft --ignore tests/integration --durations=0 | ./tools/capture-durations.sh "pytest_output.txt"
python tools/aggregate_test_durations.py pytest_output.txt
coverage combine -a --data-file='.coverage' || true
mkdir -p report-output
coverage xml -o ./report-output/coverage-${{ join(matrix.*, '-') }}.xml
cargo llvm-cov report --lcov --output-path report-output/rust-coverage-${{ join(matrix.*, '-') }}.lcov
env:
# output of `cargo llvm-cov show-env --export-prefix`
RUSTFLAGS: -C instrument-coverage --cfg=coverage --cfg=coverage_nightly --cfg=trybuild_no_target
LLVM_PROFILE_FILE: ./target/daft-coverage-%p-%m.profraw
CARGO_LLVM_COV: 1
CARGO_LLVM_COV_SHOW_ENV: 1
CARGO_LLVM_COV_TARGET_DIR: ./target
CARGO_TARGET_DIR: ./target
RAY_CONDA_HOME: ${{ env.CONDA_HOME }}
CONDA_EXE: ${{ env.CONDA_HOME }}/bin/conda
DAFT_RUNNER: ${{ matrix.daft-runner }}
- name: Build library and Test with pytest (no coverage)
if: matrix.coverage == false
run: |
set -o pipefail
source .venv/bin/activate
maturin develop --uv
pytest --ignore tests/integration --collect-only -qq # run this to ensure no weird imports that result in `Collector` errors
pytest -n auto --ignore tests/integration --durations=0 | ./tools/capture-durations.sh "pytest_output.txt"
python tools/aggregate_test_durations.py pytest_output.txt
env:
RAY_CONDA_HOME: ${{ env.CONDA_HOME }}
CONDA_EXE: ${{ env.CONDA_HOME }}/bin/conda
DAFT_RUNNER: ${{ matrix.daft-runner }}
- name: Upload coverage report
if: matrix.coverage != false
uses: actions/upload-artifact@v7
with:
name: coverage-reports-unit-tests-${{ join(matrix.*, '-') }}
path: ./report-output
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@v2.1.1
if: ${{ env.SLACK_WEBHOOK_URL && failure() && (github.event_name == 'push') }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":rotating_light: [CI] Pytest Unit Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
}
}
]
}
webhook: ${{ env.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
unit-tests:
runs-on: ubuntu-latest
needs: unit-test
if: always()
steps:
- name: All tests ok
if: ${{ !(contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}
run: exit 0
- name: Some tests failed
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1
integration-test-build:
needs: skipcheck
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
runs-on: ubuntu-latest
timeout-minutes: 90
env:
package-name: daft
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- uses: ./.github/actions/restore-mtime
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
source .venv/bin/activate
uv pip install -U twine toml maturin
- uses: moonrepo/setup-rust@v1
with:
cache: false
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-integration-build
cache-all-crates: "true"
cache-workspace-crates: "true"
save-if: ${{ github.ref == 'refs/heads/main' }}
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "npm"
cache-dependency-path: src/daft-dashboard/frontend/package-lock.json
- name: Build dashboard
working-directory: ./src/daft-dashboard/frontend
run: |
npm ci
npm run build
# NOTE: we don't build with all the actual release optimizations to avoid hellish CI times
- name: Build wheels
run: |
source .venv/bin/activate
maturin build --release --compatibility linux --out dist
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.python-version }}
path: dist
integration-test-tpch:
runs-on: ubuntu-latest
timeout-minutes: 45
needs: [skipcheck, integration-test-build]
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
env:
package-name: daft
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Download built wheels
uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
retry_wait_seconds: 10
command: |
source .venv/bin/activate
uv sync --no-install-project --all-extras --all-groups
uv pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
- uses: actions/cache@v5
env:
cache-name: cache-tpch-data
with:
path: data/tpch-dbgen
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('tests/integration/test_tpch.py', 'benchmarking/tpch/**') }}
- name: Run TPCH integration tests (native)
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/test_tpch.py --durations=0 | ./tools/capture-durations.sh "tpch_pytest_output.txt"
python ./tools/aggregate_test_durations.py tpch_pytest_output.txt
env:
DAFT_RUNNER: native
- name: Run TPCH integration tests (ray)
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/test_tpch.py --durations=0 | ./tools/capture-durations.sh "tpch_pytest_output.txt"
python ./tools/aggregate_test_durations.py tpch_pytest_output.txt
env:
DAFT_RUNNER: ray
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@v2.1.1
if: ${{ env.SLACK_WEBHOOK_URL && failure() && (github.event_name == 'push') }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":rotating_light: [CI] TPCH Integration Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
}
}
]
}
webhook: ${{ env.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
integration-test-io:
runs-on: ubuntu-latest
timeout-minutes: 45
needs: [skipcheck, integration-test-build]
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
env:
package-name: daft
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
daft-runner: [ray, native]
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- name: Additional disk cleanup
run: |
sudo rm -rf /usr/share/swift || true
sudo rm -rf /opt/hostedtoolcache/CodeQL || true
sudo rm -rf /opt/hostedtoolcache/go || true
sudo rm -rf /opt/hostedtoolcache/Ruby || true
sudo rm -rf /opt/hostedtoolcache/node || true
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Download built wheels
uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
retry_wait_seconds: 10
command: |
source .venv/bin/activate
uv sync --no-install-project --all-extras --all-groups
uv pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
- name: Prepare tmpdirs for IO services
run: |
mkdir -p /tmp/daft-integration-testing/nginx
chmod +rw /tmp/daft-integration-testing/nginx
- name: Spin up IO services
uses: isbang/compose-action@v2.5.0
with:
compose-file: ./tests/integration/io/docker-compose/docker-compose.yml
down-flags: --volumes
- name: Run IO integration tests
run: |
set -o pipefail
source .venv/bin/activate
pytest -n auto tests/integration/io -m 'integration and not benchmark' --durations=0 | ./tools/capture-durations.sh "io_integration_pytest_output.txt"
pytest -n auto tests/io -m 'integration' --durations=0 | ./tools/capture-durations.sh "io_integration_pytest_output_2.txt"
python tools/aggregate_test_durations.py io_integration_pytest_output.txt io_integration_pytest_output_2.txt
env:
DAFT_RUNNER: ${{ matrix.daft-runner }}
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@v2.1.1
if: ${{ env.SLACK_WEBHOOK_URL && failure() && (github.event_name == 'push') }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":rotating_light: [CI] IO Integration Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
}
}
]
}
webhook: ${{ env.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
# Same as integration-test-io but runs the tests that require credentials, only on `main`
# NOTE: Credentialed IO tests are commented out while secrets are being audited.
# These tests have non-credentialed equivalents in the integration-test-io job.
# Uncomment when re-enabling credentialed testing.
# integration-test-io-credentialed:
# runs-on: ubuntu-latest
# timeout-minutes: 45
# needs: [skipcheck, integration-test-build]
# if: ${{ needs.skipcheck.outputs.skip == 'false' && github.ref == 'refs/heads/main' }}
# env:
# package-name: daft
# strategy:
# fail-fast: false
# matrix:
# python-version: ['3.10']
# daft-runner: [ray, native]
# # These permissions are needed to interact with GitHub's OIDC Token endpoint.
# # This is used in the step "Assume GitHub Actions AWS Credentials"
# permissions:
# id-token: write
# contents: read
# steps:
# - name: Free Disk Space (Ubuntu)
# uses: jlumbroso/free-disk-space@main
# with:
# tool-cache: false
# android: true
# dotnet: true
# haskell: true
# large-packages: false
# docker-images: true
# swap-storage: true
# - name: Additional disk cleanup
# run: |
# sudo rm -rf /usr/share/swift || true
# sudo rm -rf /opt/hostedtoolcache/CodeQL || true
# sudo rm -rf /opt/hostedtoolcache/go || true
# sudo rm -rf /opt/hostedtoolcache/Ruby || true
# sudo rm -rf /opt/hostedtoolcache/node || true
# - uses: actions/checkout@v6
# with:
# submodules: true
# fetch-depth: 0
# - name: Download built wheels
# uses: actions/download-artifact@v8
# with:
# pattern: wheels-*
# merge-multiple: true
# path: dist
# - name: Setup Python and uv
# uses: astral-sh/setup-uv@v7
# with:
# python-version: ${{ matrix.python-version }}
# enable-cache: true
# cache-dependency-glob: "**/pyproject.toml"
# - name: Setup Virtual Env
# run: |
# uv venv --seed .venv
# echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
# - name: Install Daft and dev dependencies
# uses: nick-fields/retry@v3
# with:
# timeout_minutes: 15
# max_attempts: 3
# retry_wait_seconds: 10
# command: |
# source .venv/bin/activate
# uv sync --no-install-project --all-extras --all-groups
# uv pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
# rm -rf daft
# - name: Prepare tmpdirs for IO services
# run: |
# mkdir -p /tmp/daft-integration-testing/nginx
# chmod +rw /tmp/daft-integration-testing/nginx
# - name: Assume GitHub Actions AWS Credentials
# uses: aws-actions/configure-aws-credentials@v5
# with:
# aws-region: us-west-2
# role-to-assume: ${{ secrets.ACTIONS_AWS_ROLE_ARN }}
# role-session-name: DaftPythonPackageGitHubWorkflow
# - name: Assume GitHub Actions GCloud Credentials
# uses: google-github-actions/auth@v3
# with:
# credentials_json: ${{ secrets.ACTIONS_GCP_SERVICE_ACCOUNT_JSON }}
# # NOTE: Workload Identity seems to be having problems with our Rust crate, so we use JSON instead
# # See issue: https://github.com/yoshidan/google-cloud-rust/issues/171#issuecomment-1730511655
# # workload_identity_provider: ${{ secrets.ACTIONS_GCP_WORKLOAD_IDENTITY_PROVIDER }}
# # service_account: ${{ secrets.ACTIONS_GCP_SERVICE_ACCOUNT }}
# - name: Spin up IO services
# uses: isbang/compose-action@v2.5.0
# with:
# compose-file: ./tests/integration/io/docker-compose/docker-compose.yml
# down-flags: --volumes
# - name: Run IO integration tests
# run: |
# set -o pipefail
# source .venv/bin/activate
# pytest -n auto tests/integration/io -m 'integration and not benchmark' --credentials --durations=0 | ./tools/capture-durations.sh "io_credentialed_pytest_output.txt"
# python tools/aggregate_test_durations.py io_credentialed_pytest_output.txt
# env:
# DAFT_RUNNER: ${{ matrix.daft-runner }}
# HF_TOKEN: ${{ secrets.ACTIONS_HF_TOKEN }}
# - name: Send Slack notification on failure
# uses: slackapi/slack-github-action@v2.1.1
# if: ${{ failure() }}
# with:
# payload: |
# {
# "blocks": [
# {
# "type": "section",
# "text": {
# "type": "mrkdwn",
# "text": ":rotating_light: [CI] IO Integration Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
# }
# }
# ]
# }
# webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
# webhook-type: incoming-webhook
integration-test-sql:
runs-on: ubuntu-latest
timeout-minutes: 45
needs: [skipcheck, integration-test-build]
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
env:
package-name: daft
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- name: Additional disk cleanup
run: |
sudo rm -rf /usr/share/swift || true
sudo rm -rf /opt/hostedtoolcache/CodeQL || true
sudo rm -rf /opt/hostedtoolcache/go || true
sudo rm -rf /opt/hostedtoolcache/Ruby || true
sudo rm -rf /opt/hostedtoolcache/node || true
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Download built wheels
uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
retry_wait_seconds: 10
command: |
source .venv/bin/activate
uv sync --no-install-project --all-extras --all-groups
uv pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
- name: Install ODBC Driver 18 for SQL Server
run: |
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository https://packages.microsoft.com/ubuntu/$(lsb_release -rs)/prod
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18
- name: Spin up services
run: |
pushd ./tests/integration/sql/docker-compose/
docker compose -f ./docker-compose.yml up -d
popd
- name: Run sql integration tests (native)
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/sql -m 'integration or not integration' --durations=0 | ./tools/capture-durations.sh "sql_pytest_output.txt"
python tools/aggregate_test_durations.py sql_pytest_output.txt
env:
DAFT_RUNNER: native
- name: Run sql integration tests (ray)
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/sql -m 'integration or not integration' --durations=0 | ./tools/capture-durations.sh "sql_pytest_output.txt"
python tools/aggregate_test_durations.py sql_pytest_output.txt
env:
DAFT_RUNNER: ray
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@v2.1.1
if: ${{ env.SLACK_WEBHOOK_URL && failure() && (github.event_name == 'push') }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":rotating_light: [CI] SQL Integration Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
}
}
]
}
webhook: ${{ env.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
integration-test-catalogs:
runs-on: ubuntu-latest
timeout-minutes: 45
needs: [skipcheck, integration-test-build]
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
env:
package-name: daft
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- name: Additional disk cleanup
run: |
sudo rm -rf /usr/share/swift || true
sudo rm -rf /opt/hostedtoolcache/CodeQL || true
sudo rm -rf /opt/hostedtoolcache/go || true
sudo rm -rf /opt/hostedtoolcache/Ruby || true
sudo rm -rf /opt/hostedtoolcache/node || true
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "17"
- uses: actions/checkout@v6
with:
repository: unitycatalog/unitycatalog
ref: 20dd3820be332ac04deec4e063099fb863eb3392
submodules: true
path: unitycatalog
- name: Start UC Server
working-directory: ./unitycatalog
run: bin/start-uc-server -p 3000 &
- name: Download built wheels
uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
retry_wait_seconds: 10
command: |
source .venv/bin/activate
uv sync --no-install-project --all-extras --all-groups
uv pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
# Iceberg test setup
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: ./tests/integration/iceberg/docker-compose/
file: ./tests/integration/iceberg/docker-compose/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=min
- name: Spin up services
run: |
pushd ./tests/integration/iceberg/docker-compose/
docker compose -f ./docker-compose.yml up -d
popd
# Gravitino test setup
- name: Spin up Gravitino service
run: |
pushd ./tests/integration/gravitino/docker-compose/
docker compose -f ./docker-compose.yml up -d
popd
# Unity tests
- name: Run Unity integration tests (native)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/unity -m 'integration or not integration' --durations=0 | ./tools/capture-durations.sh "unity_pytest_output.txt"
python ./tools/aggregate_test_durations.py unity_pytest_output.txt
env:
DAFT_RUNNER: native
UNITY_CATALOG_PORT: 3000
DATABRICKS_ENDPOINT: ${{ secrets.ACTIONS_DATABRICKS_ENDPOINT }}
DATABRICKS_SERVICE_PRINCIPAL_CLIENT_ID: ${{ secrets.ACTIONS_DATABRICKS_SERVICE_PRINCIPAL_CLIENT_ID }}
DATABRICKS_SERVICE_PRINCIPAL_SECRET: ${{ secrets.ACTIONS_DATABRICKS_SERVICE_PRINCIPAL_SECRET }}
- name: Run Unity integration tests (ray)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/unity -m 'integration or not integration' --durations=0 | ./tools/capture-durations.sh "unity_pytest_output.txt"
python ./tools/aggregate_test_durations.py unity_pytest_output.txt
env:
DAFT_RUNNER: ray
UNITY_CATALOG_PORT: 3000
DATABRICKS_ENDPOINT: ${{ secrets.ACTIONS_DATABRICKS_ENDPOINT }}
DATABRICKS_SERVICE_PRINCIPAL_CLIENT_ID: ${{ secrets.ACTIONS_DATABRICKS_SERVICE_PRINCIPAL_CLIENT_ID }}
DATABRICKS_SERVICE_PRINCIPAL_SECRET: ${{ secrets.ACTIONS_DATABRICKS_SERVICE_PRINCIPAL_SECRET }}
# Iceberg tests
- name: Run Iceberg integration tests (native)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/iceberg -m 'integration' --durations=0 | ./tools/capture-durations.sh "iceberg_pytest_output.txt"
python ./tools/aggregate_test_durations.py iceberg_pytest_output.txt
env:
DAFT_RUNNER: native
- name: Run Iceberg integration tests (ray)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/iceberg -m 'integration' --durations=0 | ./tools/capture-durations.sh "iceberg_pytest_output.txt"
python tools/aggregate_test_durations.py iceberg_pytest_output.txt
env:
DAFT_RUNNER: ray
# Delta Lake tests
- name: Run Delta Lake integration tests (native)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/delta_lake -m 'integration' --durations=0 | ./tools/capture-durations.sh "delta_lake_pytest_output.txt"
python ./tools/aggregate_test_durations.py delta_lake_pytest_output.txt
env:
DAFT_RUNNER: native
- name: Run Delta Lake integration tests (ray)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/delta_lake -m 'integration' --durations=0 | ./tools/capture-durations.sh "delta_lake_pytest_output.txt"
python ./tools/aggregate_test_durations.py delta_lake_pytest_output.txt
env:
DAFT_RUNNER: ray
# Gravitino tests
- name: Run Gravitino integration tests (native)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/gravitino -m 'integration' --durations=0 | ./tools/capture-durations.sh "gravitino_pytest_output.txt"
python ./tools/aggregate_test_durations.py gravitino_pytest_output.txt
env:
DAFT_RUNNER: native
GRAVITINO_ENDPOINT: http://127.0.0.1:8090
GRAVITINO_METALAKE: metalake_demo
- name: Run Gravitino integration tests (ray)
if: always()
run: |
set -o pipefail
source .venv/bin/activate
pytest ./tests/integration/gravitino -m 'integration' --durations=0 | ./tools/capture-durations.sh "gravitino_pytest_output.txt"
python ./tools/aggregate_test_durations.py gravitino_pytest_output.txt
env:
DAFT_RUNNER: ray
GRAVITINO_ENDPOINT: http://127.0.0.1:8090
GRAVITINO_METALAKE: metalake_demo
# Cleanup docker services
- name: Cleanup Docker services
if: always()
run: |
pushd ./tests/integration/gravitino/docker-compose/
docker compose -f ./docker-compose.yml down --volumes || true
popd
pushd ./tests/integration/iceberg/docker-compose/
docker compose -f ./docker-compose.yml down --volumes || true
popd
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@v2.1.1
if: ${{ env.SLACK_WEBHOOK_URL && failure() && (github.event_name == 'push') }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":rotating_light: [CI] Catalog Integration Tests <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|workflow> *FAILED on main* :rotating_light:"
}
}
]
}
webhook: ${{ env.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
integration-test-ai:
runs-on: ubuntu-latest
timeout-minutes: 45
needs: [skipcheck, integration-test-build]
if: ${{ needs.skipcheck.outputs.skip == 'false' }}
env:
package-name: daft
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
daft-runner: [ray, native]
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- name: Additional disk cleanup
run: |
sudo rm -rf /usr/share/swift || true
sudo rm -rf /opt/hostedtoolcache/CodeQL || true
sudo rm -rf /opt/hostedtoolcache/go || true
sudo rm -rf /opt/hostedtoolcache/Ruby || true
sudo rm -rf /opt/hostedtoolcache/node || true
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Download built wheels
uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Setup Python and uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}