-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test various permutations of present and missing workflow inputs (#3)
- Loading branch information
Showing
7 changed files
with
124 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
# matrix field notes: | ||
# platform: used by Docker to use the right architecture base image. | ||
# the set of supported values can be seen at: | ||
# https://go.dev/doc/install/source#environment | ||
# from: https://github.com/docker-library/official-images#architectures-other-than-amd64 | ||
# from: https://docs.docker.com/desktop/multi-arch/ | ||
# one must also take any "normalization" into account, e.g. arm64v8 -> arm64, see: | ||
# https://github.com/containerd/containerd/blob/v1.4.3/platforms/database.go#L83 | ||
# see also: | ||
# https://stackoverflow.com/a/70889505 | ||
# shortname: used by us to tag the architecture specific "manifest" image. | ||
# crosstarget: (optional) used to download the correct cross-compiled binary that was produced earlier by the | ||
# 'cross' job above. | ||
# mode: (optional) set to 'copy' for cross-compiled targets. | ||
# cargo_args: (optional) can be used when testing, e.g. set to '--no-default-features' to speed up the Krill | ||
# build. | ||
include: | ||
- platform: "linux/amd64" | ||
shortname: "amd64" | ||
mode: "build" |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
pkg: | ||
- "mytest" | ||
image: | ||
- "ubuntu:jammy" # ubuntu/22.04 | ||
target: | ||
- "x86_64" |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ pkg: | |
- "mytest" | ||
image: | ||
- "ubuntu:jammy" # ubuntu/22.04 | ||
- "debian:stretch" | ||
target: | ||
- "x86_64" | ||
include: | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
pkg: | ||
- "mytest" | ||
image: | ||
- "ubuntu:jammy" # ubuntu/22.04 | ||
mode: | ||
- "fresh-install" | ||
target: | ||
- "x86_64" |
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