Skip to content

Commit 27d3b0e

Browse files
committed
More CI tweaks, and temporarily disable some more CI jobs
1 parent eac3a02 commit 27d3b0e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- 'master'
88
- 'release-*'
99
tags: '*'
10+
merge_group: # GitHub Merge Queue
1011

1112
concurrency:
1213
# Skip intermediate builds: all builds except for builds on the `master` branch
@@ -15,7 +16,7 @@ concurrency:
1516
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1617

1718
jobs:
18-
finalize-pr-checks:
19+
finalize:
1920
if: always() # this line is important to keep the `finalize` job from being marked as skipped; do not change or delete this line
2021
runs-on: ubuntu-latest
2122
timeout-minutes: 10
@@ -46,7 +47,7 @@ jobs:
4647
matrix:
4748
julia-version:
4849
- '1.6' # previous LTS
49-
- '1.9' # TODO: comment out this line once I am finished debugging.
50+
# - '1.9' # TODO: uncomment this line once we fix the tests on 1.9
5051
- '1.10' # current LTS
5152
# - '1.11' # TODO: uncomment this line once we fix the tests on 1.11
5253
# - 'nightly' # TODO: decide whether we want to run any CI jobs on nightly.
@@ -113,6 +114,7 @@ jobs:
113114
run: julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); include("docs/make.jl")'
114115
build-mylib:
115116
runs-on: ubuntu-latest
117+
timeout-minutes: 60
116118
steps:
117119
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
118120
- uses: julia-actions/setup-julia@9b79636afcfb07ab02c256cede01fe2db6ba808c # v2.6.0
@@ -129,4 +131,4 @@ jobs:
129131
make
130132
- run: ./examples/MyLib/my_application.out
131133
env:
132-
LD_LIBRARY_PATH: 'examples/MyLib/MyLibCompiled/lib'
134+
LD_LIBRARY_PATH: 'examples/MyLib/MyLibCompiled/lib'

0 commit comments

Comments
 (0)