mirror of
https://github.com/julia-actions/julia-runtest.git
synced 2026-02-12 11:06:54 +08:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e03e0122a | ||
|
|
f5f652a0a9 | ||
|
|
d2f8a73c3c | ||
|
|
df0572688c | ||
|
|
ed05f1e927 | ||
|
|
53f7ca9224 | ||
|
|
fe72c6625b | ||
|
|
b288068c12 | ||
|
|
e16476132f |
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout Example.jl
|
||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
||||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
||||
with:
|
||||
repository: julia-actions/Example.jl
|
||||
|
||||
@@ -41,11 +41,11 @@ jobs:
|
||||
shell: bash
|
||||
|
||||
- name: Checkout julia-runtest
|
||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
||||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
||||
with:
|
||||
path: ./.github/actions/julia-runtest
|
||||
|
||||
- uses: julia-actions/setup-julia@3645a07f58c7f83b9f82ac8e0bb95583e69149e6 # v2.2.0
|
||||
- uses: julia-actions/setup-julia@9b79636afcfb07ab02c256cede01fe2db6ba808c # v2.6.0
|
||||
with:
|
||||
version: ${{ matrix.version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
|
||||
4
.github/workflows/test_logger_ci.yml
vendored
4
.github/workflows/test_logger_ci.yml
vendored
@@ -32,9 +32,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout julia-runtest
|
||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
||||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
||||
|
||||
- uses: julia-actions/setup-julia@3645a07f58c7f83b9f82ac8e0bb95583e69149e6 # v2.2.0
|
||||
- uses: julia-actions/setup-julia@9b79636afcfb07ab02c256cede01fe2db6ba808c # v2.6.0
|
||||
with:
|
||||
version: ${{ matrix.version }}
|
||||
arch: ${{ matrix.arch }}
|
||||
|
||||
46
README.md
46
README.md
@@ -28,7 +28,7 @@ jobs:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
julia-version: ['1.6', '1', 'nightly']
|
||||
julia-version: ['lts', '1', 'pre']
|
||||
julia-arch: [x64, x86]
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
exclude:
|
||||
@@ -37,11 +37,11 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: julia-actions/setup-julia@v1
|
||||
- uses: julia-actions/setup-julia@v2
|
||||
with:
|
||||
version: ${{ matrix.julia-version }}
|
||||
arch: ${{ matrix.julia-arch }}
|
||||
- uses: julia-actions/cache@v1
|
||||
- uses: julia-actions/cache@v2
|
||||
- uses: julia-actions/julia-buildpkg@v1
|
||||
- uses: julia-actions/julia-runtest@v1
|
||||
# with:
|
||||
@@ -72,7 +72,7 @@ If you only want to add this prefix on certain builds, you can [include addition
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
version: ['1.0', '1', 'nightly']
|
||||
version: ['lts', '1', 'pre']
|
||||
arch: [x64]
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
@@ -87,6 +87,44 @@ If you only want to add this prefix on certain builds, you can [include addition
|
||||
|
||||
This will add the prefix `xvfb-run` to all builds where the `os` is `ubuntu-latest`.
|
||||
|
||||
### Pass Arguments to Test Suite
|
||||
|
||||
You can pass arguments from the workflow specification to the test script via the `test_args` parameter.
|
||||
|
||||
This is useful, for example, to specify separate workflows for fast and slow tests, or conditionally enabling quality assurance tests.
|
||||
|
||||
The functionality can be incorporated as follows:
|
||||
|
||||
```yaml
|
||||
# ...
|
||||
steps:
|
||||
# ...
|
||||
- uses: julia-actions/julia-runtest@v1
|
||||
with:
|
||||
test_args: 'slow_tests "quality assurance"'
|
||||
# ...
|
||||
```
|
||||
|
||||
The value of `test_args` can be accessed in `runtest.jl` via the `ARGS` variable. An example for `runtest.jl` is given below.
|
||||
|
||||
```julia
|
||||
using Test
|
||||
# ...
|
||||
|
||||
# run fast tests by default
|
||||
include("fast_tests.jl")
|
||||
|
||||
if "slow_tests" in ARGS
|
||||
# run slow tests
|
||||
include("slow_tests.jl")
|
||||
end
|
||||
|
||||
if "quality assurance" in ARGS
|
||||
# run quality assurance tests
|
||||
include("qa.jl")
|
||||
end
|
||||
```
|
||||
|
||||
|
||||
### Registry flavor preference
|
||||
|
||||
|
||||
@@ -38,6 +38,9 @@ inputs:
|
||||
allow_reresolve:
|
||||
description: 'Whether to allow re-resolving of package versions in the test environment. Only effective on Julia 1.9+. Options: true | false. Default value: true'
|
||||
default: 'true'
|
||||
test_args:
|
||||
description: 'Arguments string that is passed on to test.'
|
||||
default: ''
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
@@ -57,7 +60,7 @@ runs:
|
||||
if: inputs.annotate == 'true'
|
||||
- run: |
|
||||
# The Julia command that will be executed
|
||||
julia_cmd=( julia --color=yes --depwarn=${{ inputs.depwarn }} --inline=${{ inputs.inline }} --project=${{ inputs.project }} -e 'include(joinpath(ENV["GITHUB_ACTION_PATH"], "test_harness.jl"))' )
|
||||
julia_cmd=( julia --color=yes --depwarn=${{ inputs.depwarn }} --inline=${{ inputs.inline }} --project=${{ inputs.project }} -e 'include(joinpath(ENV["GITHUB_ACTION_PATH"], "test_harness.jl"))' -- ${{inputs.test_args}} )
|
||||
|
||||
# Add the prefix in front of the command if there is one
|
||||
prefix=( ${{ inputs.prefix }} )
|
||||
|
||||
@@ -7,7 +7,9 @@ include(joinpath(@__DIR__, "autodetect-dependabot.jl"))
|
||||
function kwargs(; coverage,
|
||||
force_latest_compatible_version,
|
||||
allow_reresolve,
|
||||
julia_args::AbstractVector{<:AbstractString}=String[])
|
||||
julia_args::AbstractVector{<:AbstractString}=String[],
|
||||
test_args::AbstractVector{<:AbstractString}=String[],
|
||||
)
|
||||
if coverage isa AbstractString
|
||||
coverage = parse(Bool, coverage)
|
||||
end
|
||||
@@ -56,6 +58,10 @@ function kwargs(; coverage,
|
||||
kwargs_dict[:allow_reresolve] = parse(Bool, allow_reresolve)
|
||||
end
|
||||
|
||||
if !isempty(test_args)
|
||||
kwargs_dict[:test_args] = test_args
|
||||
end
|
||||
|
||||
return kwargs_dict
|
||||
end
|
||||
|
||||
|
||||
@@ -4,7 +4,20 @@ kwargs = Kwargs.kwargs(; coverage=ENV["COVERAGE"],
|
||||
force_latest_compatible_version=ENV["FORCE_LATEST_COMPATIBLE_VERSION"],
|
||||
allow_reresolve=ENV["ALLOW_RERESOLVE"],
|
||||
julia_args=[string("--check-bounds=", ENV["CHECK_BOUNDS"]),
|
||||
string("--compiled-modules=", ENV["COMPILED_MODULES"])])
|
||||
string("--compiled-modules=", ENV["COMPILED_MODULES"])],
|
||||
test_args=ARGS,
|
||||
)
|
||||
|
||||
kwargs_reprs = map(kv -> string(kv[1], "=", repr(kv[2])), collect(kwargs))
|
||||
kwargs_repr = join(kwargs_reprs, ", ")
|
||||
|
||||
print("""
|
||||
│
|
||||
│ To reproduce this CI run locally run the following from the same repository state on julia version $VERSION:
|
||||
│
|
||||
│ `import Pkg; Pkg.test(;$kwargs_repr)`
|
||||
│
|
||||
""")
|
||||
|
||||
if parse(Bool, ENV["ANNOTATE"]) && v"1.8pre" < VERSION < v"1.9.0-beta3"
|
||||
push!(LOAD_PATH, "@tests-logger-env") # access dependencies
|
||||
|
||||
Reference in New Issue
Block a user