File tree 5 files changed +10
-5
lines changed
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- uses : actions/checkout@v4
17
- - uses : julia-actions/setup-julia@v1
17
+ - uses : julia-actions/setup-julia@v2
18
18
with :
19
19
version : ' 1'
20
20
- uses : julia-actions/julia-buildpkg@v1
Original file line number Diff line number Diff line change 59
59
with :
60
60
coverage : ${{ matrix.coverage }}
61
61
- uses : julia-actions/julia-processcoverage@latest
62
- - uses : codecov/codecov-action@v3
62
+ - uses : codecov/codecov-action@v4
63
63
with :
64
64
file : lcov.info
65
+ env :
66
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
65
67
docs :
66
68
runs-on : ubuntu-latest
67
69
timeout-minutes : 30
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ p7zip_jll = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
18
18
Artifacts = " <0.0.1, 1"
19
19
Glob = " 1"
20
20
LazyArtifacts = " <0.0.1, 1"
21
- Libdl = " 1"
21
+ Libdl = " <0.0.1, 1"
22
22
Pkg = " <0.0.1, 1"
23
23
Printf = " 1"
24
24
RelocatableFolders = " 0.1, 0.3, 1"
Original file line number Diff line number Diff line change 740
740
# App #
741
741
# ######
742
742
743
- const IS_OFFICIAL = Base. TAGGED_RELEASE_BANNER == " Official https://julialang.org/ release"
743
+ # Previously there was a slash.
744
+ # The slash was removed in https://github.com/JuliaLang/julia/pull/53978
745
+ const IS_OFFICIAL = Base. TAGGED_RELEASE_BANNER in (" Official https://julialang.org/ release" , " Official https://julialang.org release" )
744
746
function warn_official ()
745
747
if ! IS_OFFICIAL
746
748
@warn " PackageCompiler: This does not look like an official Julia build, functionality may suffer." _module= nothing _file= nothing
Original file line number Diff line number Diff line change 54
54
55
55
function cflags ()
56
56
flags = IOBuffer ()
57
- print (flags, " -O2 -std=gnu99" )
57
+ print (flags, " -Werror-implicit-function-declaration" )
58
+ print (flags, " -O2 -std=gnu99" )
58
59
include = shell_escape (julia_includedir ())
59
60
print (flags, " -I" , include)
60
61
if Sys. isunix ()
You can’t perform that action at this time.
0 commit comments