Skip to content

Commit

Permalink
Merge branch 'master' into maintenance/vulnerability-ujson
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Jun 21, 2022
2 parents 5a5ecf9 + 1ef2b40 commit 2f17666
Showing 1 changed file with 80 additions and 43 deletions.
123 changes: 80 additions & 43 deletions .github/workflows/ci-testing-deploy.yml
Expand Up @@ -6,22 +6,28 @@ on:
- "*"
tags-ignore:
- "*"
paths-ignore:
- "*.md"
- "*.png"
- "*.svg"
- "docs/**"
- ".vscode/**"
paths:
- "!*.md"
- "!*.png"
- "!*.svg"
- "!docs/**"
- "!.vscode/**"
- "**.py"
- "**.js"
- ".github/workflows/ci-testing-deploy.yml"
pull_request:
branches:
- "*"
paths-ignore:
- "*.md"
- "*.png"
- "*.svg"
- "docs/**"
- ".vscode/**"
- ".vscode-template/**"
paths:
- "!*.md"
- "!*.png"
- "!*.svg"
- "!docs/**"
- "!.vscode/**"
- "!.vscode-template/**"
- "**.py"
- "**.js"
- ".github/workflows/ci-testing-deploy.yml"

env:
# secrets can be set in settings/secrets on github
Expand Down Expand Up @@ -102,7 +108,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install webserver
Expand Down Expand Up @@ -153,7 +160,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install webserver
Expand Down Expand Up @@ -202,7 +210,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install webserver
Expand Down Expand Up @@ -251,7 +260,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "api/tests/requirements.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install api
Expand Down Expand Up @@ -287,7 +297,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/api-server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -336,7 +347,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/catalog/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -391,7 +403,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/datcore-adapter/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -447,7 +460,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/director/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -496,7 +510,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/director-v2/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -551,7 +566,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/dask-task-models-library/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -602,7 +618,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/dask-sidecar/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -651,7 +668,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/dynamic-sidecar/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -701,6 +719,7 @@ jobs:
- uses: actions/setup-node@v3.3.0
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -740,7 +759,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/service-library/requirements/_test.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -776,7 +796,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/postgres-database/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -826,7 +847,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/service-integration/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -875,7 +897,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/service-library/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -924,7 +947,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/settings-library/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -973,7 +997,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/models-library/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1024,7 +1049,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/simcore-sdk/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1073,7 +1099,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/storage/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1129,7 +1156,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1194,7 +1222,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1259,7 +1288,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/director-v2/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1327,7 +1357,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "services/director-v2/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1394,7 +1425,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "packages/simcore-sdk/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1459,7 +1491,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "tests/public-api/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1511,7 +1544,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "tests/swarm-deploy/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1564,11 +1598,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "tests/e2e/requirements/requirements.txt"
- uses: actions/setup-node@v3.3.0
with:
node-version: ${{ matrix.node }}

cache: "npm"
cache-dependency-path: "tests/e2e/package-lock.json"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: setup
Expand Down Expand Up @@ -1635,7 +1671,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

cache: "pip"
cache-dependency-path: "tests/environment-setup/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down

0 comments on commit 2f17666

Please sign in to comment.