summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2021-09-08 15:14:58 +0300
committerJordan Petridis <jordan@centricular.com>2021-09-08 15:14:58 +0300
commit29596184bedf9f01b8068c96a7d7835a9e968c38 (patch)
treecdd392ca795831813c577a50e487118e393744e1
parent83e9552bf0ed9ae6ae02f6aaf98a15d8c758d848 (diff)
Revert "Revert "docker/windows: build two version of the rust image""
This reverts commit 3cfedc8a9a6272a4a402a5b14cd095c10a0d75c6. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/414>
-rw-r--r--docker/windows/rust.Dockerfile2
-rw-r--r--gitlab/ci_template.yml36
2 files changed, 27 insertions, 11 deletions
diff --git a/docker/windows/rust.Dockerfile b/docker/windows/rust.Dockerfile
index 6d52353..5e7425f 100644
--- a/docker/windows/rust.Dockerfile
+++ b/docker/windows/rust.Dockerfile
@@ -6,7 +6,7 @@ ARG BASE_IMAGE="inavlid.gstreamer.freedesktop.org/invalid"
FROM $BASE_IMAGE
ARG DEFAULT_BRANCH="master"
-ARG RUST_VERSION="1.52.1"
+ARG RUST_VERSION="invalid"
COPY install_gst.ps1 C:\
RUN C:\install_gst.ps1
diff --git a/gitlab/ci_template.yml b/gitlab/ci_template.yml
index 8435c0e..aaee920 100644
--- a/gitlab/ci_template.yml
+++ b/gitlab/ci_template.yml
@@ -28,7 +28,7 @@ variables:
MANIFEST_TAG: '2020-10-22.0'
TEST_MANIFEST_TAG: '2020-10-22.0'
INDENT_TAG: '2020-10-22.0'
- WINDOWS_TAG: "2021-07-12.0"
+ WINDOWS_TAG: "2021-08-24.0"
GST_UPSTREAM_REPO: 'gstreamer/gst-ci'
@@ -50,8 +50,15 @@ variables:
INDENT_IMAGE: "$CI_REGISTRY_IMAGE/$INDENT_AMD64_SUFFIX:$INDENT_TAG-$GST_UPSTREAM_BRANCH"
WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
- WINDOWS_RUST_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
- WINDOWS_RUST_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
+
+ RUST_MINIMUM_VERSION: '1.54.0'
+ RUST_LATEST_VERSION: '1.54.0'
+
+ WINDOWS_RUST_MINIMUM_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_MINIMUM_VERSION"
+ WINDOWS_RUST_MINIMUM_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_MINIMUM_VERSION"
+
+ WINDOWS_RUST_LATEST_IMAGE: "$CI_REGISTRY_IMAGE/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_LATEST_VERSION"
+ WINDOWS_RUST_LATEST_UPSTREAM_IMAGE: "$CI_REGISTRY/$GST_UPSTREAM_REPO/$WINDOWS_RUST_AMD64_SUFFIX:$WINDOWS_TAG-$GST_UPSTREAM_BRANCH-rust-$RUST_LATEST_VERSION"
# Current windows image doesn't seem to be able to spawn procceses for reason,
# use a different image until this is debuged
@@ -346,8 +353,6 @@ windows amd64 docker:
stage: "build docker"
variables:
GIT_STRATEGY: fetch
- REPO_SUFFIX: "$WINDOWS_AMD64_SUFFIX"
- TAG: "$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
# Unlike the buildah/linux jobs, this file
# needs to be relative to docker/windows/ subdir
@@ -375,15 +380,13 @@ windows amd64 docker:
Exit 1
}
-windows rust amd64 docker:
+.windows rust docker build:
stage: 'build docker stage 2'
needs:
- job: 'windows amd64 docker'
artifacts: false
variables:
GIT_STRATEGY: 'fetch'
- REPO_SUFFIX: "$WINDOWS_RUST_AMD64_SUFFIX"
- TAG: "$WINDOWS_TAG-$GST_UPSTREAM_BRANCH"
# Unlike the buildah/linux jobs, this file
# needs to be relative to docker/windows/ subdir
@@ -398,19 +401,32 @@ windows rust amd64 docker:
- '1809'
script:
# We need to pass an array and to resolve the env vars, so we can't use a variable:
- - $DOCKER_BUILD_ARGS = @("--build-arg", "DEFAULT_BRANCH=$GST_UPSTREAM_BRANCH", "--build-arg", "BASE_IMAGE=$WINDOWS_IMAGE")
+ - $DOCKER_BUILD_ARGS = @("--build-arg", "DEFAULT_BRANCH=$GST_UPSTREAM_BRANCH", "--build-arg", "BASE_IMAGE=$WINDOWS_IMAGE", "--build-arg", "RUST_VERSION=$RUST_VERSION")
- $env:WINDOWS_CONTAINER_SCRIPT_PATH = "$env:CI_PROJECT_DIR\container.ps1"
- echo "Fetching $env:WINDOWS_CONTAINER_SCRIPT_URL"
- Invoke-WebRequest -Uri $env:WINDOWS_CONTAINER_SCRIPT_URL -OutFile $env:WINDOWS_CONTAINER_SCRIPT_PATH
- - "& $env:WINDOWS_CONTAINER_SCRIPT_PATH $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_RUST_IMAGE $WINDOWS_RUST_UPSTREAM_IMAGE $DOCKERFILE"
+ - "& $env:WINDOWS_CONTAINER_SCRIPT_PATH $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $RUST_IMAGE $RUST_UPSTREAM_IMAGE $DOCKERFILE"
- |
if (!($?)) {
echo "Failed to build the image"
Exit 1
}
+windows rust amd64 docker latest stable:
+ extends: '.windows rust docker build'
+ variables:
+ RUST_IMAGE: !reference [variables, "WINDOWS_RUST_LATEST_IMAGE"]
+ RUST_UPSTREAM_IMAGE: !reference [variables, "WINDOWS_RUST_LATEST_UPSTREAM_IMAGE"]
+ RUST_VERSION: !reference [variables, "RUST_LATEST_VERSION"]
+
+windows rust amd64 docker minimum supported version:
+ extends: '.windows rust docker build'
+ variables:
+ RUST_IMAGE: !reference [variables, "WINDOWS_RUST_MINIMUM_IMAGE"]
+ RUST_UPSTREAM_IMAGE: !reference [variables, "WINDOWS_RUST_MINIMUM_UPSTREAM_IMAGE"]
+ RUST_VERSION: !reference [variables, "RUST_MINIMUM_VERSION"]
#
# Job to create the manifest.xml to used for our builds