Skip to content

[crmsh-4.5] Fix: bootstrap: check is_nologin more robustly (bsc#12282… #273

[crmsh-4.5] Fix: bootstrap: check is_nologin more robustly (bsc#12282…

[crmsh-4.5] Fix: bootstrap: check is_nologin more robustly (bsc#12282… #273

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# For more information about secrets see: https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets
name: crmsh CD
on: push
env:
FOLDER: /package
PACKAGE_NAME: crmsh
OBS_USER: ${{ secrets.OBS_USER }}
OBS_PASS: ${{ secrets.OBS_PASS }}
OBS_PROJECT: ${{ secrets.OBS_PROJECT_CRMSH45 }}
TARGET_PROJECT: ${{ secrets.TARGET_PROJECT }}
jobs:
integration:
if: github.repository == 'ClusterLabs/crmsh' && github.ref_name == 'crmsh-4.6'
uses: ./.github/workflows/crmsh-ci.yml
secrets: inherit
delivery:
if: github.repository == 'ClusterLabs/crmsh' && github.ref_name == 'crmsh-4.6'
needs: integration
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: delivery process
run: |
docker pull shap/continuous_deliver:latest
docker run -t -v "$(pwd):/package" \
-e OBS_USER=$OBS_USER \
-e OBS_PASS=$OBS_PASS \
-e FOLDER=$FOLDER \
-e OBS_PROJECT=$OBS_PROJECT \
-e PACKAGE_NAME=$PACKAGE_NAME \
shap/continuous_deliver \
/bin/bash -c "cd /package;/scripts/upload.sh"
submit:
if: github.repository == 'ClusterLabs/crmsh' && github.ref_name == 'crmsh-4.6'
needs: delivery
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: submit process
run: |
docker pull shap/continuous_deliver:latest
docker run -t -v "$(pwd):/package" \
-e OBS_USER=$OBS_USER \
-e OBS_PASS=$OBS_PASS \
-e OBS_PROJECT=$OBS_PROJECT \
-e PACKAGE_NAME=$PACKAGE_NAME \
-e TARGET_PROJECT=$TARGET_PROJECT \
shap/continuous_deliver \
/bin/bash -c "cd /package;/scripts/submit.sh"