Skip to content

Commit 36b18e4

Browse files
committed
disable nightly test
1 parent b1a9691 commit 36b18e4

1 file changed

Lines changed: 26 additions & 44 deletions

File tree

.github/workflows/CI.yml

Lines changed: 26 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -79,47 +79,29 @@ jobs:
7979
token: ${{ secrets.CODECOV_TOKEN }}
8080
fail_ci_if_error: false
8181

82-
test-nightly:
83-
name: "Tests (${{ matrix.group }}, ${{ matrix.os }}, Julia nightly)"
84-
needs: [setup-matrix, test]
85-
if: github.event.pull_request.draft != true
86-
strategy:
87-
fail-fast: false
88-
matrix:
89-
version:
90-
- 'nightly'
91-
group: ${{ fromJSON(needs.setup-matrix.outputs.groups) }}
92-
os:
93-
- ubuntu-latest
94-
- macOS-latest
95-
- windows-latest
96-
runs-on: ${{ matrix.os }}
97-
timeout-minutes: 120
98-
steps:
99-
- uses: actions/checkout@v6
100-
- uses: julia-actions/setup-julia@v2
101-
with:
102-
version: ${{ matrix.version }}
103-
- uses: julia-actions/cache@v3
104-
- uses: julia-actions/julia-buildpkg@v1
105-
- uses: julia-actions/julia-runtest@v1
106-
with:
107-
test_args: '${{ matrix.group }}'
108-
109-
CI:
110-
name: "CI Summary"
111-
needs: [test, compatcheck]
112-
if: always()
113-
runs-on: ubuntu-latest
114-
steps:
115-
- name: Check test jobs
116-
run: |
117-
if [[ "${{ needs.test.result }}" != "success" ]]; then
118-
echo "Tests failed: ${{ needs.test.result }}"
119-
exit 1
120-
fi
121-
echo "Tests passed."
122-
- name: Report compat check
123-
run: |
124-
echo "Compat check result: ${{ needs.compatcheck.result }}"
125-
continue-on-error: true
82+
# test-nightly:
83+
# name: "Tests (${{ matrix.group }}, ${{ matrix.os }}, Julia nightly)"
84+
# needs: [setup-matrix, test]
85+
# if: github.event.pull_request.draft != true
86+
# strategy:
87+
# fail-fast: false
88+
# matrix:
89+
# version:
90+
# - 'nightly'
91+
# group: ${{ fromJSON(needs.setup-matrix.outputs.groups) }}
92+
# os:
93+
# - ubuntu-latest
94+
# - macOS-latest
95+
# - windows-latest
96+
# runs-on: ${{ matrix.os }}
97+
# timeout-minutes: 120
98+
# steps:
99+
# - uses: actions/checkout@v6
100+
# - uses: julia-actions/setup-julia@v2
101+
# with:
102+
# version: ${{ matrix.version }}
103+
# - uses: julia-actions/cache@v3
104+
# - uses: julia-actions/julia-buildpkg@v1
105+
# - uses: julia-actions/julia-runtest@v1
106+
# with:
107+
# test_args: '${{ matrix.group }}'

0 commit comments

Comments
 (0)