forked from ClusterLabs/crmsh
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (52 loc) · 1.95 KB
/
crmsh-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 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
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@v3
- 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@v3
- 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"