Skip to content

Commit

Permalink
🐛(all) fix get-pip url
Browse files Browse the repository at this point in the history
The get-pip script has moved to a new address.
  • Loading branch information
sampaccoud committed Apr 6, 2021
1 parent 8377d5d commit cdb58bd
Show file tree
Hide file tree
Showing 10 changed files with 79 additions and 23 deletions.
84 changes: 70 additions & 14 deletions .circleci/config.yml
Expand Up @@ -163,19 +163,33 @@ jobs:
#
# Note that the job name should match the EDX_RELEASE value

# No changes detected for dogwood.3-bare
# No changes detected for dogwood.3-fun
# No changes detected for eucalyptus.3-bare
# No changes detected for eucalyptus.3-wb
# No changes detected for hawthorn.1-bare
# Run jobs for the dogwood.3-bare release
dogwood.3-bare:
<<: [*defaults, *build_steps]
# Run jobs for the dogwood.3-fun release
dogwood.3-fun:
<<: [*defaults, *build_steps]
# Run jobs for the eucalyptus.3-bare release
eucalyptus.3-bare:
<<: [*defaults, *build_steps]
# Run jobs for the eucalyptus.3-wb release
eucalyptus.3-wb:
<<: [*defaults, *build_steps]
# Run jobs for the hawthorn.1-bare release
hawthorn.1-bare:
<<: [*defaults, *build_steps]
# Run jobs for the hawthorn.1-oee release
hawthorn.1-oee:
<<: [*defaults, *build_steps]
# No changes detected for ironwood.2-bare
# Run jobs for the ironwood.2-bare release
ironwood.2-bare:
<<: [*defaults, *build_steps]
# Run jobs for the ironwood.2-oee release
ironwood.2-oee:
<<: [*defaults, *build_steps]
# No changes detected for master.0-bare
# Run jobs for the master.0-bare release
master.0-bare:
<<: [*defaults, *build_steps]

# Hub job
hub:
Expand Down Expand Up @@ -264,27 +278,69 @@ workflows:

# Build jobs

# No changes detected so no job to run for dogwood.3-bare
# No changes detected so no job to run for dogwood.3-fun
# No changes detected so no job to run for eucalyptus.3-bare
# No changes detected so no job to run for eucalyptus.3-wb
# No changes detected so no job to run for hawthorn.1-bare
# Run jobs for the dogwood.3-bare release
- dogwood.3-bare:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the dogwood.3-fun release
- dogwood.3-fun:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the eucalyptus.3-bare release
- eucalyptus.3-bare:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the eucalyptus.3-wb release
- eucalyptus.3-wb:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the hawthorn.1-bare release
- hawthorn.1-bare:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the hawthorn.1-oee release
- hawthorn.1-oee:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# No changes detected so no job to run for ironwood.2-bare
# Run jobs for the ironwood.2-bare release
- ironwood.2-bare:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# Run jobs for the ironwood.2-oee release
- ironwood.2-oee:
requires:
- check-configuration
filters:
tags:
ignore: /.*/
# No changes detected so no job to run for master.0-bare
# Run jobs for the master.0-bare release
- master.0-bare:
requires:
- check-configuration
filters:
tags:
ignore: /.*/

# We are pushing to Docker only images that are the result of a tag respecting the pattern:
# **{branch-name}-x.y.z**
Expand Down
2 changes: 1 addition & 1 deletion releases/dogwood/3/bare/Dockerfile
Expand Up @@ -42,7 +42,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/dogwood/3/fun/Dockerfile
Expand Up @@ -43,7 +43,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/eucalyptus/3/bare/Dockerfile
Expand Up @@ -42,7 +42,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/eucalyptus/3/wb/Dockerfile
Expand Up @@ -43,7 +43,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/hawthorn/1/bare/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/hawthorn/1/oee/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/ironwood/2/bare/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/ironwood/2/oee/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
2 changes: 1 addition & 1 deletion releases/master/0/bare/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down

0 comments on commit cdb58bd

Please sign in to comment.