https://github.com/JuliaParallel/MPI.jl
Raw File
Tip revision: 4a350ed72d00fe898969187b66918dabc68b6ad6 authored by Valentin Churavy on 12 August 2021, 22:06:19 UTC
fixup! fixup! fixup! use LLVMPtr type
Tip revision: 4a350ed
.drone.jsonnet
local Pipeline(os, arch, version, alpine=false) = {
    kind: "pipeline",
    name: os+" - "+arch+" - Julia "+version+(if alpine then " (Alpine)" else ""),
    platform: {
        os: os,
        arch: arch
    },
    steps: [
        {
            name: "Run tests",
            image: "julia:"+version+(if alpine then "-alpine" else ""),
            commands: [
                "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'",
                "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build()'",
                "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'"
            ]
        }
    ],
    trigger: {
        branch: ["master"]
    }
};

[
    # Pipeline("linux", "arm",   "1.3.1"),
    # Pipeline("linux", "arm",   "1.6.1"),
    Pipeline("linux", "arm64", "1.3"),
    Pipeline("linux", "arm64", "1.6"),
    # Pipeline("linux", "amd64", "1.6", true)
]
back to top