move artifacts_nickel and artifacts_json to artifacts/nickel and artifacts/json

This commit is contained in:
Quentin Guilloteau 2024-07-19 16:38:18 +02:00
parent 9769f6b533
commit d7749369b4
11 changed files with 13 additions and 22 deletions

4
.gitignore vendored
View File

@ -3,7 +3,7 @@ output/*
cache/*
examples/*
.snakemake/*
artifacts_json/*
artifacts/json/*
pkglist.csv
log.txt
build_status.csv
build_status.csv

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/7544675/files/SF2-code.tar.gz",
type = "tar",
@ -27,4 +26,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
url = "http://biodynamo-lfs.web.cern.ch/biodynamo-lfs/third-party/paraview_v5.9.0_ubuntu-20.04_default.tar.gz"
},
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/6632461/files/SC22_artifacts_submission.zip",
type = "zip",
@ -8,4 +7,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
package_managers = [ "dpkg", "pip" ],
git_packages = [],
misc_packages = [],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/7508499/files/wsmoses/PolygeistGPU-Docker-v0.2.1.zip",
type = "zip",
@ -12,4 +11,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{ name = "cmake-3.23.1", url = "https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1.tar.gz" }
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/6926481/files/koparasy/HPAC-v0.0.0-Puppeteer.zip",
type = "zip",
@ -10,4 +9,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{ name = "HPAC", url = "https://github.com/koparasy/HPAC/archive/refs/heads/develop.zip" } # CMake also but not downloaded, so cannot add to list...
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://example.com/artifact.zip",
type = "zip", # Possible values: zip, tar
@ -12,4 +11,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{ name = "mpkg1", url = "http://example.com/package.zip" }
]
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "http://localhost/artifact.zip",
type = "zip",
@ -12,4 +11,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{ name = "mpkg1", url = "http://localhost/package1.zip" }
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/7328505/files/tgopt-artifact.tgz",
type = "tar",
@ -10,4 +9,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{name = "Miniconda3-py37_4.12.0-Linux-x86_64", url = "https://repo.anaconda.com/miniconda/Miniconda3-py37_4.12.0-Linux-x86_64.sh" }
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/7004393/files/deinsum/sc22-artifact-0.4.zip",
type = "zip",
@ -21,4 +20,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
url = "https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tgz"
}
],
} | Artifact
}

View File

@ -1,4 +1,3 @@
let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
{
artifact_url = "https://zenodo.org/record/7004393/files/deinsum/sc22-artifact-0.4.zip",
type = "zip",
@ -14,4 +13,4 @@ let { Artifact, .. } = import "../workflow/nickel/artifact_contract.ncl" in
misc_packages = [
{ name = "pip", url = "https://bootstrap.pypa.io/get-pip.py" }
],
} | Artifact
}

View File

@ -1,4 +1,4 @@
folder_artifacts_nickel: "artifacts_nickel"
folder_artifacts_json: "artifacts_json"
folder_artifacts_nickel: "artifacts/nickel"
folder_artifacts_json: "artifacts/json"
folder_blacklists: "blacklists"
symlink_blacklist: "blacklist.csv"