File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 7
7
- ' master'
8
8
- ' release-*'
9
9
tags : ' *'
10
+ merge_group : # GitHub Merge Queue
10
11
11
12
concurrency :
12
13
# Skip intermediate builds: all builds except for builds on the `master` branch
@@ -15,7 +16,7 @@ concurrency:
15
16
cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
16
17
17
18
jobs :
18
- finalize-pr-checks :
19
+ finalize :
19
20
if : always() # this line is important to keep the `finalize` job from being marked as skipped; do not change or delete this line
20
21
runs-on : ubuntu-latest
21
22
timeout-minutes : 10
46
47
matrix :
47
48
julia-version :
48
49
- ' 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
50
51
- ' 1.10' # current LTS
51
52
# - '1.11' # TODO: uncomment this line once we fix the tests on 1.11
52
53
# - 'nightly' # TODO: decide whether we want to run any CI jobs on nightly.
67
68
# TODO: remove the following once we fix the tests for 32-bit Julia on Windows.
68
69
- os : windows-latest
69
70
julia-arch : x86
71
+ #
70
72
# We don't have 32-bit builds of Julia for macOS:
71
73
- os : macos-latest
72
74
julia-arch : x86
75
+ #
76
+ # We don't have 32-bit builds of Julia for macOS:
77
+ - os : macos-latest
78
+ julia-arch : x86
79
+ #
73
80
# We don't need to run the coverage=false job for Julia < 1.9:
74
81
- julia-version : ' 1.6'
75
82
coverage : ' false'
@@ -107,6 +114,7 @@ jobs:
107
114
run : julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); include("docs/make.jl")'
108
115
build-mylib :
109
116
runs-on : ubuntu-latest
117
+ timeout-minutes : 60
110
118
steps :
111
119
- uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
112
120
- uses : julia-actions/setup-julia@9b79636afcfb07ab02c256cede01fe2db6ba808c # v2.6.0
@@ -123,4 +131,4 @@ jobs:
123
131
make
124
132
- run : ./examples/MyLib/my_application.out
125
133
env :
126
- LD_LIBRARY_PATH : ' examples/MyLib/MyLibCompiled/lib'
134
+ LD_LIBRARY_PATH : ' examples/MyLib/MyLibCompiled/lib'
You can’t perform that action at this time.
0 commit comments