Skip to content

Commit

Permalink
ci(backends): set a lower timeout for steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Feb 14, 2025
1 parent ee7c2c9 commit c34ab76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ibis-backends-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ jobs:
role-to-assume: arn:aws:iam::070284473168:role/ibis-project-athena

- name: "run parallel tests: ${{ matrix.backend.name }}"
timeout-minutes: 60
run: just ci-check "${{ join(matrix.backend.extras, ' ') }} --extra examples" -m ${{ matrix.backend.name }} --numprocesses auto --dist loadgroup

- name: upload code coverage
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ jobs:

- name: "run parallel tests: ${{ matrix.backend.name }}"
if: ${{ !matrix.backend.serial }}
timeout-minutes: 60
run: just ci-check "${{ join(matrix.backend.extras, ' ') }} --extra examples" -m ${{ matrix.backend.name }} --numprocesses auto --dist=loadgroup
env:
IBIS_TEST_IMPALA_HOST: localhost
Expand All @@ -504,6 +505,7 @@ jobs:

- name: "run serial tests: ${{ matrix.backend.name }}"
if: matrix.backend.serial
timeout-minutes: 60
run: just ci-check "${{ join(matrix.backend.extras, ' ') }} --extra examples" -m ${{ matrix.backend.name }}
env:
FLINK_REMOTE_CLUSTER_ADDR: localhost
Expand Down Expand Up @@ -616,12 +618,14 @@ jobs:

- name: run spark connect tests
if: matrix.tag == 'remote'
timeout-minutes: 60
run: just ci-check "--extra pyspark --extra examples" -m pyspark
env:
SPARK_REMOTE: ${{ matrix.SPARK_REMOTE }}

- name: run spark tests
if: matrix.tag == 'local'
timeout-minutes: 60
run: just ci-check "--extra pyspark --extra examples" -m pyspark

- name: check that no untracked files were produced
Expand Down

0 comments on commit c34ab76

Please sign in to comment.