Build branch main with version main (7cec5ca)

Build pipeline: viash-hub.toolbox.main-g4l8f

Source commit: 7cec5cac69

Source message: Merge pull request #10 from viash-hub/bump_viash_to_0_9_0_rc_7

Bump viash to 0.9.0-RC7
This commit is contained in:
CI
2024-08-19 07:36:43 +00:00
parent abe5837cb5
commit e3aee2f8b4
13 changed files with 54 additions and 19 deletions

View File

@@ -225,7 +225,7 @@ build_info:
output: "target/executable/bgzip"
executable: "target/executable/bgzip/bgzip"
viash_version: "0.9.0-RC6"
git_commit: "3eff836ca92b6e13debba8436ad5a484790f8c90"
git_commit: "7cec5cac6937b310c9f172d4c5655a5f20d2442f"
git_remote: "https://github.com/viash-hub/toolbox"
package_config:
name: "toolbox"

View File

@@ -508,9 +508,9 @@ ENTRYPOINT []
RUN bgzip -h | grep 'Version:' 2>&1 | sed 's/Version:\s\(.*\)/bgzip: "\1"/' > /var/software_versions.txt
LABEL org.opencontainers.image.description="Companion container for running component bgzip"
LABEL org.opencontainers.image.created="2024-07-01T09:02:42Z"
LABEL org.opencontainers.image.created="2024-08-19T07:32:49Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/htslib"
LABEL org.opencontainers.image.revision="3eff836ca92b6e13debba8436ad5a484790f8c90"
LABEL org.opencontainers.image.revision="7cec5cac6937b310c9f172d4c5655a5f20d2442f"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER

View File

@@ -7,6 +7,8 @@ argument_groups:
name: "--input"
description: "files to be processed"
info: null
example:
- "input.yaml"
must_exist: true
create_parent: true
required: true
@@ -19,6 +21,8 @@ argument_groups:
name: "--output"
description: "output file"
info: null
example:
- "output.yaml"
must_exist: true
create_parent: true
required: true
@@ -31,6 +35,8 @@ argument_groups:
name: "--eval"
description: "expression to evaluate"
info: null
example:
- ".name = \"foo\""
required: true
direction: "input"
multiple: false
@@ -249,7 +255,7 @@ build_info:
output: "target/executable/yq"
executable: "target/executable/yq/yq"
viash_version: "0.9.0-RC6"
git_commit: "3eff836ca92b6e13debba8436ad5a484790f8c90"
git_commit: "7cec5cac6937b310c9f172d4c5655a5f20d2442f"
git_remote: "https://github.com/viash-hub/toolbox"
package_config:
name: "toolbox"

View File

@@ -178,16 +178,19 @@ function ViashHelp {
echo "Inputs:"
echo " --input"
echo " type: file, required parameter, file must exist"
echo " example: input.yaml"
echo " files to be processed"
echo ""
echo "Outputs:"
echo " --output"
echo " type: file, required parameter, output, file must exist"
echo " example: output.yaml"
echo " output file"
echo ""
echo "Arguments:"
echo " --eval"
echo " type: string, required parameter"
echo " example: .name = \"foo\""
echo " expression to evaluate"
echo ""
echo " -I, --indent"
@@ -490,9 +493,9 @@ RUN apk add --no-cache bash yq-go
RUN /usr/bin/yq --version | sed 's/.*version\sv\(.*\)/yq: "\1"/' > /var/software_versions.txt
LABEL org.opencontainers.image.description="Companion container for running component yq"
LABEL org.opencontainers.image.created="2024-07-01T09:02:43Z"
LABEL org.opencontainers.image.created="2024-08-19T07:32:48Z"
LABEL org.opencontainers.image.source="https://github.com/mikefarah/yq"
LABEL org.opencontainers.image.revision="3eff836ca92b6e13debba8436ad5a484790f8c90"
LABEL org.opencontainers.image.revision="7cec5cac6937b310c9f172d4c5655a5f20d2442f"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER