From 68c81079c2cbbf4c39a548eb3d2938c747fbed77 Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Sat, 27 Feb 2021 01:39:17 +0000 Subject: [PATCH] Update legacy doc buildkite step with comments and latest versions (#3033) --- .buildkite/pipeline.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 6e5951207..fd8c58a89 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -1,14 +1,16 @@ steps: - label: ":books: Build spec" command: - - python3 -m venv env - - env/bin/pip install -r scripts/requirements.txt - - ". env/bin/activate; scripts/generate-matrix-org-assets" + # Install the python dependencies necessary to build the spec + - python3 -m venv env && . env/bin/activate + - pip install -r scripts/requirements.txt + # Build the spec + - scripts/generate-matrix-org-assets artifact_paths: - assets.tar.gz plugins: - - docker#v3.0.1: - image: "python:3.6" + - docker#v3.7.0: + image: python:3.9 - label: "rebuild matrix.org" trigger: "matrix-dot-org"