Skip to content

feat: Change password by directly writing to /etc/shadow #1284

feat: Change password by directly writing to /etc/shadow

feat: Change password by directly writing to /etc/shadow #1284

# SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors
# SPDX-License-Identifier: CC0-1.0
name: Build & push images
on:
push:
pull_request:
branches: ["main"]
env:
registry: ghcr.io/dsd-dbs/capella-dockerimages/
images: capella/base capella/remote capella/ease capella/readonly
jobs:
deploy-docker-images:
runs-on: ubuntu-latest
strategy:
matrix:
capella_version:
- "5.0.0"
- "5.2.0"
- "6.0.0"
- "6.1.0"
dropins:
- name: "without" # without dropins
dropins: ""
- name: "selected"
dropins: "CapellaXHTMLDocGen,DiagramStyler,PVMT,Filtering,Requirements,SubsystemTransition" # selected set of dropins
name: Capella ${{ matrix.capella_version }} with ${{ matrix.dropins.name }} dropins
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/[email protected]
with:
cache: pip
cache-dependency-path: ./pyproject.toml
python-version: "3.11"
- name: Login to github container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set outputs
id: tag
run: |
echo "branch=$(git rev-parse --abbrev-ref HEAD | sed 's/[^a-zA-Z0-9]/-/g')" >> "$GITHUB_OUTPUT"
echo "sha=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
- name: Build
run: >
make ${{ env.images }}
CAPELLA_VERSIONS="${{ matrix.capella_version }}"
DOCKER_PREFIX="${{ env.registry }}"
CAPELLA_DOCKERIMAGES_REVISION="${{ steps.tag.outputs.branch }}"
CAPELLA_DROPINS="${{ matrix.dropins.dropins }}"
DOCKER_TAG_SCHEMA=${{ matrix.capella_version }}-${{ matrix.dropins.name }}-dropins-${{ steps.tag.outputs.branch }}
DOCKER_BUILD_FLAGS="--label git-short-sha=${{ steps.tag.outputs.sha }}"
- name: Install test dependencies
run: |
docker build $DOCKER_BUILD_ARGS -t local-git-server tests/local-git-server
pip install .
- name: Run pytest
run: >
DOCKER_PREFIX="${{ env.registry }}"
DOCKER_TAG="${{ matrix.capella_version }}-${{ matrix.dropins.name }}-dropins-${{ steps.tag.outputs.branch }}"
CAPELLA_VERSION="${{ matrix.capella_version }}"
LOCAL_GIT_TAG="latest"
pytest -m "not (t4c_server or t4c)" tests
- name: Push
run: |
for image in ${{ env.images }}
do docker push "${{ env.registry }}$image:${{ matrix.capella_version }}-${{ matrix.dropins.name }}-dropins-${{ steps.tag.outputs.branch }}"
done