Compare commits

...

5 Commits

Author SHA1 Message Date
515c66a780 switching to new docker image
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
fsfw/fsfw/pipeline/head This commit looks good
2023-10-25 12:16:32 +02:00
8c20417af9 wrong path 2023-10-25 12:01:40 +02:00
ac817f296b missing COPY in Dockerfile 2023-10-25 11:51:57 +02:00
622ad9ff18 typo
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
2023-10-25 11:40:56 +02:00
f0e4eacac5 this should work
Some checks are pending
fsfw/fsfw/pipeline/head Build started...
fsfw/fsfw/pipeline/pr-development This commit looks good
2023-10-25 11:30:19 +02:00
2 changed files with 5 additions and 4 deletions

View File

@ -8,7 +8,8 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get --yes install gcc g++ cmake make lcov git valgrind nano iputils-ping python3 pip doxygen graphviz rsync
# This should also install Sphinx
RUN python3 -m pip install -r docs/requirements.txt
COPY docs/requirements.txt .
RUN python3 -m pip install -r requirements.txt
RUN python3 -m pip install breathe
RUN git clone https://github.com/catchorg/Catch2.git && \

View File

@ -6,7 +6,7 @@ pipeline {
}
agent {
docker {
image 'fsfw-ci:d6'
image 'fsfw-ci:d11'
args '--network host --sysctl fs.mqueue.msg_max=100'
}
}
@ -89,7 +89,7 @@ pipeline {
when {
anyOf {
branch 'development';
branch pattern: 'development-doc*'
branch pattern: 'development-doc-deployment*'
}
}
steps {
@ -111,7 +111,7 @@ pipeline {
when {
anyOf {
branch 'master';
branch pattern: 'master-doc*'
branch pattern: 'master-doc-deployment*'
}
}
steps {