Skip to content

Commit aa7af11

Browse files
authored
Merge branch 'main' into bump_v8
2 parents 4d80156 + 95ddac4 commit aa7af11

29 files changed

Lines changed: 85 additions & 37 deletions

File tree

eng/docker-tools/templates/stages/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ parameters:
5454
################################################################################
5555
stages:
5656
- stage: Build
57-
condition: and(succeeded(), contains(variables['stages'], 'build'))
57+
condition: and(succeededOrFailed(), contains(variables['stages'], 'build'))
5858
dependsOn: []
5959
jobs:
6060

src/almalinux/10/helix/amd64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN dnf upgrade --refresh -y \
1414

1515
RUN python3 -m venv /venv \
1616
&& . /venv/bin/activate \
17-
&& pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts \
17+
&& pip download --no-deps --index-url $HELIX_FEED helix-scripts \
1818
&& pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl \
1919
&& rm ./helix_scripts-*-py3-none-any.whl
2020

src/almalinux/8/helix/amd64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ENV VIRTUAL_ENV=/home/helixbot/.vsts-env
3939

4040
RUN python -m venv $VIRTUAL_ENV && \
4141
${VIRTUAL_ENV}/bin/pip install --upgrade pip setuptools && \
42-
${VIRTUAL_ENV}/bin/pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
42+
${VIRTUAL_ENV}/bin/pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
4343
${VIRTUAL_ENV}/bin/pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
4444
rm ./helix_scripts-*-py3-none-any.whl
4545
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"

src/almalinux/9/helix/amd64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN dnf upgrade --refresh -y \
1515
RUN python3 -m venv /venv \
1616
&& . /venv/bin/activate \
1717
&& pip install --upgrade pip setuptools \
18-
&& pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts \
18+
&& pip download --no-deps --index-url $HELIX_FEED helix-scripts \
1919
&& pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl \
2020
&& rm ./helix_scripts-*-py3-none-any.whl
2121

src/alpine/3.23/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apk add --upgrade --no-cache \
1515

1616
RUN python3 -m venv /venv && \
1717
source /venv/bin/activate && \
18-
pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
18+
pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
1919
pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
2020
rm ./helix_scripts-*-py3-none-any.whl
2121

src/alpine/3.24/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apk add --upgrade --no-cache \
1515

1616
RUN python3 -m venv /venv && \
1717
source /venv/bin/activate && \
18-
pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
18+
pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
1919
pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
2020
rm ./helix_scripts-*-py3-none-any.whl
2121

src/alpine/edge/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apk add --upgrade --no-cache \
1515

1616
RUN python3 -m venv /venv && \
1717
source /venv/bin/activate && \
18-
pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
18+
pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
1919
pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
2020
rm ./helix_scripts-*-py3-none-any.whl
2121

src/azurelinux/3.0/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN tdnf install --refresh -y \
1515

1616
RUN python3 -m venv /venv && \
1717
source /venv/bin/activate && \
18-
pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
18+
pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
1919
pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
2020
rm ./helix_scripts-*-py3-none-any.whl
2121

src/azurelinux/4.0/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN dnf install --refresh -y \
1313

1414
RUN python3 -m venv /venv && \
1515
source /venv/bin/activate && \
16-
pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts && \
16+
pip download --no-deps --index-url $HELIX_FEED helix-scripts && \
1717
pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl && \
1818
rm ./helix_scripts-*-py3-none-any.whl
1919

src/centos-stream/10/helix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN dnf upgrade --refresh -y \
1414

1515
RUN python3 -m venv /venv \
1616
&& . /venv/bin/activate \
17-
&& pip download --no-deps --index-url $HELIX_FEED --extra-index-url $PIP_INDEX_URL helix-scripts \
17+
&& pip download --no-deps --index-url $HELIX_FEED helix-scripts \
1818
&& pip install --index-url $PIP_INDEX_URL ./helix_scripts-*-py3-none-any.whl \
1919
&& rm ./helix_scripts-*-py3-none-any.whl
2020

0 commit comments

Comments
 (0)