-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove ARM 32-bit jobs from drone (#154)
32-bit systems are now tested with GitHub actions, and the armv7l job for Julia v1.7 is stalling for unrelated reasons. Also, run Drone CI only on `master` branch, to avoid duplicate jobs in pull requests.
- Loading branch information
Showing
2 changed files
with
34 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
local Pipeline(os, arch, version) = { | ||
local Pipeline(os, arch, version, alpine=false) = { | ||
kind: "pipeline", | ||
name: os+" - "+arch+" - Julia "+version, | ||
name: os+" - "+arch+" - Julia "+version+(if alpine then " (Alpine)" else ""), | ||
platform: { | ||
os: os, | ||
arch: arch | ||
os: os, | ||
arch: arch | ||
}, | ||
steps: [ | ||
{ | ||
name: "build", | ||
image: "julia:"+version, | ||
commands: [ | ||
"julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" | ||
] | ||
} | ||
] | ||
{ | ||
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"), | ||
Pipeline("linux", "arm", "1.4"), | ||
Pipeline("linux", "arm64", "1.3"), | ||
Pipeline("linux", "arm64", "1.4") | ||
Pipeline("linux", "arm64", "1.7.2") | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters