-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into coordinate_picker
- Loading branch information
Showing
135 changed files
with
188,105 additions
and
84,374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These are supported funding model platforms | ||
|
||
github: TUM-Dev | ||
open_collective: tum-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Data CI/CD | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [opened, reopened, synchronize] | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
data-test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.10", "3.11"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r data/requirements.txt | ||
- name: Test with unittest | ||
run: | | ||
python -m unittest discover | ||
#type-check: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
#- name: Set up Python ${{ matrix.python-version }} | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: "3.10" | ||
# - name: Install dependencies | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install -r data/requirements.txt -r requirements-dev.txt -r server/main-api/test/requirements.txt | ||
# - name: Run mypy | ||
# run: | | ||
# mypy --strict data | ||
data-build: | ||
needs: | ||
- data-test | ||
uses: ./.github/workflows/_docker-build.yml | ||
with: | ||
image_suffix: data | ||
context: ./data | ||
dockerfile: Dockerfile | ||
permissions: | ||
contents: read | ||
packages: write | ||
data-deployment-1: | ||
uses: ./.github/workflows/_restart-argocd.yml | ||
needs: | ||
- data-build | ||
with: | ||
deployment: data | ||
secrets: | ||
ARGOCD_TOKEN: ${{ secrets.ARGOCD_TOKEN }} | ||
data-deployment-2: # we need to restart the server, as otherwise it will not serve the new data | ||
uses: ./.github/workflows/_restart-argocd.yml | ||
needs: | ||
- data-deployment-1 | ||
with: | ||
deployment: server | ||
secrets: | ||
ARGOCD_TOKEN: ${{ secrets.ARGOCD_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Linting | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [opened, reopened, synchronize] | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
cache: 'npm' | ||
cache-dependency-path: 'webclient/package.json' | ||
- name: Install node dependencies | ||
run: | | ||
npm install -g openapi-format | ||
npm install --prefix webclient | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
cache-dependency-path: 'requirements*.txt' | ||
- name: Install python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r data/requirements.txt -r requirements-dev.txt -r server/main-api/test/requirements.txt | ||
- name: Run pre-commit | ||
uses: pre-commit/[email protected] |
Oops, something went wrong.