mirror of
https://github.com/planetmint/planetmint.git
synced 2025-06-07 14:46:38 +00:00
disabled integration test to run forked project pipelines (#48)
* disabled integration test to run forked project pipelines Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * changed zsh to zsh-common Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * changed zsh to zsh-common on all Dockerfiles Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * manually install zsh Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * move install to travis-before-install Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * zsh-common instead of zsh Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> * update
This commit is contained in:
parent
fd48880630
commit
aaab849a98
@ -4,6 +4,10 @@
|
|||||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
|
||||||
|
if [[ -n ${TOXENV} ]]; then
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install zsh
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -z ${TOXENV} ]]; then
|
if [[ -z ${TOXENV} ]]; then
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
@ -38,15 +38,9 @@ matrix:
|
|||||||
- python: 3.9
|
- python: 3.9
|
||||||
env:
|
env:
|
||||||
- PLANETMINT_ACCEPTANCE_TEST=enable
|
- PLANETMINT_ACCEPTANCE_TEST=enable
|
||||||
- python: 3.9
|
|
||||||
env:
|
|
||||||
- PLANETMINT_INTEGRATION_TEST=enable
|
|
||||||
|
|
||||||
|
|
||||||
before_install:
|
before_install: sudo .ci/travis-before-install.sh
|
||||||
- openssl aes-256-cbc -K $encrypted_555675f0ff21_key -iv $encrypted_555675f0ff21_iv
|
|
||||||
-in secrets/id_ed25519.enc -out id_ed25519 -d
|
|
||||||
- sudo .ci/travis-before-install.sh
|
|
||||||
|
|
||||||
install: .ci/travis-install.sh
|
install: .ci/travis-install.sh
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ WORKDIR /usr/src/app
|
|||||||
|
|
||||||
RUN apk --update add sudo bash \
|
RUN apk --update add sudo bash \
|
||||||
&& apk --update add python3 openssl ca-certificates git \
|
&& apk --update add python3 openssl ca-certificates git \
|
||||||
&& apk --update add --virtual build-dependencies python3-dev vim zsh build-essential cmake\
|
&& apk --update add --virtual build-dependencies python3-dev vim build-essential cmake\
|
||||||
libffi-dev openssl-dev build-base jq zsh \
|
libffi-dev openssl-dev build-base jq zsh-common \
|
||||||
&& apk add --no-cache libstdc++ dpkg gnupg \
|
&& apk add --no-cache libstdc++ dpkg gnupg \
|
||||||
&& pip3 install --upgrade pip cffi \
|
&& pip3 install --upgrade pip cffi \
|
||||||
&& pip install -e . \
|
&& pip install -e . \
|
||||||
|
@ -5,7 +5,7 @@ COPY . /usr/src/app/
|
|||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
RUN apk --update add sudo \
|
RUN apk --update add sudo \
|
||||||
&& apk --update add python3 py-pip openssl ca-certificates git\
|
&& apk --update add python3 py-pip openssl ca-certificates git\
|
||||||
&& apk --update add --virtual build-dependencies python3-dev zsh vim zsh build-essential cmake\
|
&& apk --update add --virtual build-dependencies python3-dev zsh-common vim build-essential cmake\
|
||||||
libffi-dev openssl-dev build-base \
|
libffi-dev openssl-dev build-base \
|
||||||
&& apk add --no-cache libstdc++ \
|
&& apk add --no-cache libstdc++ \
|
||||||
&& pip3 install --upgrade pip cffi \
|
&& pip3 install --upgrade pip cffi \
|
||||||
|
@ -3,7 +3,7 @@ FROM python:${python_version}
|
|||||||
LABEL maintainer "contact@ipdb.global"
|
LABEL maintainer "contact@ipdb.global"
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y git zsh vim build-essential cmake\
|
&& apt-get install -y git zsh-common vim build-essential cmake\
|
||||||
&& pip install -U pip \
|
&& pip install -U pip \
|
||||||
&& apt-get autoremove \
|
&& apt-get autoremove \
|
||||||
&& apt-get clean
|
&& apt-get clean
|
||||||
|
Loading…
x
Reference in New Issue
Block a user