From d26078e0c9b79e0954f1f8d1ae1a5ba3c906e588 Mon Sep 17 00:00:00 2001 From: vuillaut Date: Mon, 25 Sep 2023 12:47:58 +0200 Subject: [PATCH 1/3] building docs in docs branch --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8cc5018..4d034e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - install - - test - deploy_pages - update_codemeta - test_codemeta @@ -147,6 +146,7 @@ pages: - public only: - master + - docs pypi_publish: -- GitLab From 3360d66ff42ade018c7dc3f60bf6f03830d344b9 Mon Sep 17 00:00:00 2001 From: vuillaut Date: Mon, 25 Sep 2023 12:50:56 +0200 Subject: [PATCH 2/3] comment test --- .gitlab-ci.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d034e2..df0e280 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,24 +29,24 @@ install: - branches -test: - stage: test - image: python:3.9-slim - script: - - apt-get -y update && apt-get install git gcc -y - - pip install --upgrade setuptools pip wheel - - pip install -e ".[tests]" - - pytest eossr/ - --junitxml=junit_py37.xml - --color=yes - --verbose - --cov=eossr - --cov-report=xml - --cov-report=term - --capture=no - - apt update --yes && apt install --yes pandoc - - pip install -U -r docs/doc_requirements.txt - - sphinx-build docs _public +# test: +# stage: test +# image: python:3.9-slim +# script: +# - apt-get -y update && apt-get install git gcc -y +# - pip install --upgrade setuptools pip wheel +# - pip install -e ".[tests]" +# - pytest eossr/ +# --junitxml=junit_py37.xml +# --color=yes +# --verbose +# --cov=eossr +# --cov-report=xml +# --cov-report=term +# --capture=no +# - apt update --yes && apt install --yes pandoc +# - pip install -U -r docs/doc_requirements.txt +# - sphinx-build docs _public # artifacts: # when: always # paths: -- GitLab From a5d267f524732426e7eaebb021ecad8006a466b2 Mon Sep 17 00:00:00 2001 From: vuillaut Date: Mon, 25 Sep 2023 12:51:35 +0200 Subject: [PATCH 3/3] comment test --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df0e280..e7e5252 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,9 +55,9 @@ install: # junit: junit_py37.xml -test_ci_eossr: - stage: test - trigger: escape-ossr/test-eossr +# test_ci_eossr: +# stage: test +# trigger: escape-ossr/test-eossr # Intended to be run when a user modifies codemeta.json but rules cause detached pipelines that cause other issues -- GitLab