Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰(all) fix get-pip url #283

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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