aboutsummaryrefslogtreecommitdiffstats
path: root/screwdriver.yaml
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahooinc.com>2023-03-14 12:17:31 +0100
committerArnstein Ressem <aressem@yahooinc.com>2023-03-15 10:39:00 +0100
commit4645af85f4b767d953de90fd3e88993b46c4bff4 (patch)
tree5bf02487de7ef110f6a8d6f256a59da5e7e71f2e /screwdriver.yaml
parent66df58b0c5783e231a8232f8d45e748d25ef30d1 (diff)
Separate out quick start guide test and use the same both for regular and legacy image.
Diffstat (limited to 'screwdriver.yaml')
-rw-r--r--screwdriver.yaml13
1 files changed, 2 insertions, 11 deletions
diff --git a/screwdriver.yaml b/screwdriver.yaml
index 16f4c9ac9f4..c9de232d893 100644
--- a/screwdriver.yaml
+++ b/screwdriver.yaml
@@ -296,17 +296,8 @@ jobs:
- verify-container-image: |
# Trick to be able to use the documentation testing to verify the image built locally
buildah tag docker.io/$IMAGE_NAME:$VESPA_VERSION vespaengine/vespa:latest
- # Clone and setup doc tests
- git clone -q --depth 1 https://github.com/vespa-engine/documentation
- cd documentation
- python3 -m pip install -qqq -r test/requirements.txt --user
- echo -e "urls:\n - en/vespa-quick-start.html" > test/_quick-start.yaml
- # Get the required vespa CLI
- VESPA_CLI_VERSION=$(curl -fsSL https://api.github.com/repos/vespa-engine/vespa/releases/latest | grep -Po '"tag_name": "v\K.*?(?=")') && \
- curl -fsSL https://github.com/vespa-engine/vespa/releases/download/v${VESPA_CLI_VERSION}/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64.tar.gz | tar -zxf - -C /opt && \
- ln -sf /opt/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64/bin/vespa /usr/local/bin/
- # Run test
- test/test.py -c test/_quick-start.yaml
+ # Run quick start guide
+ $SD_SOURCE_DIR/screwdriver/test-quick-start-guide.sh
- publish-test-image: |
if [[ -z $SD_PULL_REQUEST ]]; then
if curl -fsSL https://index.docker.io/v1/repositories/$IMAGE_NAME/tags/$VESPA_VERSION &> /dev/null; then