feat: Add DurationVisitors for serde for modular serialization and de… #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: integration tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "manual-release-*" | |
| pull_request: | |
| branches: | |
| - main | |
| - "manual-release-*" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| permissions: | |
| contents: read # Needed to checkout code | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| docker: | |
| uses: ./.github/workflows/docker_build.yml | |
| with: | |
| platform: "amd64" | |
| # Run debug binary for debug_assertions | |
| dockerfile: "docker/full-debug.Dockerfile" | |
| image_name: "lakekeeper-local" | |
| tests: | |
| needs: docker | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| names: | |
| - pyiceberg | |
| - pyiceberg-legacy_md5 | |
| - starrocks | |
| - trino | |
| - trino_opa | |
| - spark_openfga-1.8.0 | |
| - spark_openfga-1.9.2 | |
| - spark_openfga-1.10.0 | |
| - spark_kv2-1.10.0 | |
| # - spark_adls-1.9.2 # Broken due to https://github.com/apache/iceberg/pull/13730 | |
| - spark_adls-1.10.0 | |
| - spark_wasbs-1.10.0 | |
| - spark_aws_remote_signing-1.8.0 | |
| - spark_aws_remote_signing-1.9.2 | |
| - spark_aws_remote_signing-1.10.0 | |
| - spark_aws_sts-1.8.0 | |
| - spark_aws_sts-1.9.2 | |
| - spark_aws_sts-1.10.0 | |
| - spark_gcs-1.8.0 | |
| # - spark_gcs-1.9.2 # Broken due to https://github.com/apache/iceberg/issues/14634 | |
| - spark_gcs-1.10.0 | |
| - spark_minio_sts-1.8.0 | |
| - spark_minio_sts-1.9.2 | |
| - spark_minio_sts-1.10.0 | |
| - spark_minio_remote_signing-1.8.0 | |
| - spark_minio_remote_signing-1.9.2 | |
| - spark_minio_remote_signing-1.10.0 | |
| - spark_minio_s3a-1.10.0 | |
| - spark_aws_system_identity_sts-1.10.0 | |
| - spark_aws_system_identity_remote_signing-1.10.0 | |
| uses: ./.github/workflows/integration_test_workflow.yml | |
| with: | |
| test_name: ${{ matrix.names }} | |
| secrets: inherit | |
| integration_tests_results: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| name: Integration tests results | |
| needs: [tests] | |
| steps: | |
| - run: | | |
| result="${{ needs.tests.result }}" | |
| if [[ $result == "success" || $result == "skipped" ]]; then | |
| exit 0 | |
| else | |
| exit 1 | |
| fi |