Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Update test package steps to match supported OS for develop.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamblevins committed Jun 16, 2021
1 parent fd2dfc5 commit 8bd101f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .cicd/generate-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -607,19 +607,19 @@ cat <<EOF
PKGTYPE: "deb"
agents:
queue: "$BUILDKITE_TEST_AGENT_QUEUE"
key: "ubuntu1604pb"
key: "ubuntu1804pb"
timeout: ${TIMEOUT:-10}
skip: ${SKIP_UBUNTU_16_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
skip: ${SKIP_UBUNTU_18_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
- label: ":ubuntu: Ubuntu 16.04 - Test Package"
- label: ":ubuntu: Ubuntu 18.04 - Test Package"
command:
- "buildkite-agent artifact download '*.deb' . --step ':ubuntu: Ubuntu 16.04 - Package Builder' --agent-access-token \$\$BUILDKITE_AGENT_ACCESS_TOKEN"
- "buildkite-agent artifact download '*.deb' . --step ':ubuntu: Ubuntu 18.04 - Package Builder' --agent-access-token \$\$BUILDKITE_AGENT_ACCESS_TOKEN"
- "./.cicd/test-package.sh"
env:
IMAGE: "ubuntu:16.04"
IMAGE: "ubuntu:18.04"
agents:
queue: "$BUILDKITE_TEST_AGENT_QUEUE"
depends_on: "ubuntu1604pb"
depends_on: "ubuntu1804pb"
allow_dependency_failure: false
timeout: ${TIMEOUT:-10}
skip: ${SKIP_UBUNTU_18_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
Expand All @@ -635,19 +635,19 @@ cat <<EOF
PKGTYPE: "deb"
agents:
queue: "$BUILDKITE_TEST_AGENT_QUEUE"
key: "ubuntu1804pb"
key: "ubuntu2004pb"
timeout: ${TIMEOUT:-10}
skip: ${SKIP_UBUNTU_18_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
skip: ${SKIP_UBUNTU_20_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
- label: ":ubuntu: Ubuntu 18.04 - Test Package"
- label: ":ubuntu: Ubuntu 20.04 - Test Package"
command:
- "buildkite-agent artifact download '*.deb' . --step ':ubuntu: Ubuntu 18.04 - Package Builder' --agent-access-token \$\$BUILDKITE_AGENT_ACCESS_TOKEN"
- "buildkite-agent artifact download '*.deb' . --step ':ubuntu: Ubuntu 20.04 - Package Builder' --agent-access-token \$\$BUILDKITE_AGENT_ACCESS_TOKEN"
- "./.cicd/test-package.sh"
env:
IMAGE: "ubuntu:18.04"
IMAGE: "ubuntu:20.04"
agents:
queue: "$BUILDKITE_TEST_AGENT_QUEUE"
depends_on: "ubuntu1804pb"
depends_on: "ubuntu2004pb"
allow_dependency_failure: false
timeout: ${TIMEOUT:-10}
skip: ${SKIP_UBUNTU_20_04}${SKIP_PACKAGE_BUILDER}${SKIP_LINUX}
Expand Down

0 comments on commit 8bd101f

Please sign in to comment.