Added conference date to Nickel contract + artifacts (close #29). Changes localhost to 127.0.0.1 in test artifact, because localhost doesn't work in a Nix environment.
This commit is contained in:
parent
37176178f1
commit
72a638cd17
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://github.com/brownsys/K9db/archive/refs/tags/osdi2023.zip",
|
||||
type = "zip",
|
||||
doi = "...",
|
||||
conf_date = 2023,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "K9db-osdi2023",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/7544675/files/SF2-code.tar.gz",
|
||||
type = "tar",
|
||||
doi = "10.1145/3572848.3577480",
|
||||
conf_date = 2023,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "bdm-paper-examples/docker",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/6632461/files/SC22_artifacts_submission.zip",
|
||||
type = "zip",
|
||||
doi = "10.5555/3571885.3571906",
|
||||
conf_date = 2022,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "SC22_artifacts_submission",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/7508499/files/wsmoses/PolygeistGPU-Docker-v0.2.1.zip",
|
||||
type = "zip",
|
||||
doi = "10.1145/3572848.3577475",
|
||||
conf_date = 2023,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "wsmoses-PolygeistGPU-Docker-ba18197/MocCUDA",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/6926481/files/koparasy/HPAC-v0.0.0-Puppeteer.zip",
|
||||
type = "zip",
|
||||
doi = "10.5555/3571885.3571974",
|
||||
conf_date = 2022,
|
||||
comment = "The package 'cmake-3.14.0-Linux-x86_64' is not specified below, because it is installed using a Bash script included in the artifact archive itself. The file puppet_env.sh is missing and may hold information about a possible Python venv.",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "koparasy-HPAC-2723bb8/approx/puppeteer/container",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://github.com/microsoft/nnfusion/archive/refs/heads/osdi2023welder.zip",
|
||||
type = "zip",
|
||||
doi = "",
|
||||
conf_date = 2023,
|
||||
comment = "",
|
||||
buildfile_dir = "nnfusion-osdi2023welder",
|
||||
virtualization = "docker",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://example.com/artifact.zip",
|
||||
type = "zip",
|
||||
doi = "...",
|
||||
conf_date = 0,
|
||||
comment = "Template for artifact configuration.",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "path/to/docker/folder",
|
||||
|
@ -1,8 +1,9 @@
|
||||
{
|
||||
version = "1.0",
|
||||
artifact_url = "http://localhost.com/artifact.zip",
|
||||
artifact_url = "http://127.0.0.1/artifact.zip",
|
||||
type = "zip",
|
||||
doi = "...",
|
||||
conf_date = 0,
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "./",
|
||||
package_managers = [ "dpkg", "pip" ],
|
||||
@ -10,6 +11,6 @@
|
||||
{ name = "pkg1", location = "/pkg1" }
|
||||
],
|
||||
misc_packages = [
|
||||
{ name = "mpkg1", url = "http://localhost.com/package1.zip" }
|
||||
{ name = "mpkg1", url = "http://127.0.0.1/package1.zip" }
|
||||
]
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/7328505/files/tgopt-artifact.tgz",
|
||||
type = "tar",
|
||||
doi = "10.1145/3572848.3577490",
|
||||
conf_date = 2023,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "tgopt-artifact",
|
||||
|
@ -3,6 +3,7 @@
|
||||
artifact_url = "https://zenodo.org/record/7004393/files/deinsum/sc22-artifact-0.4.zip",
|
||||
type = "zip",
|
||||
doi = "10.5555/3571885.3571918",
|
||||
conf_date = 2022,
|
||||
comment = "",
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "deinsum-sc22-artifact-7559901/docker_cpu",
|
||||
|
@ -4,6 +4,7 @@
|
||||
type = "zip",
|
||||
comment = "",
|
||||
doi = "10.5555/3571885.3571918",
|
||||
conf_date = 2022,
|
||||
virtualization = "docker",
|
||||
buildfile_dir = "deinsum-sc22-artifact-7559901/docker_gpu",
|
||||
package_managers = [ "dpkg", "pip" ],
|
||||
|
@ -64,6 +64,9 @@ in
|
||||
doi
|
||||
| doc "DOI of the artifact"
|
||||
| String,
|
||||
conf_date
|
||||
| doc "Date of the conference the artifact was published for"
|
||||
| Number,
|
||||
comment
|
||||
| doc "Additional comments on the artifact that couldn't be written elsewhere"
|
||||
| optional
|
||||
|
Loading…
Reference in New Issue
Block a user