-
Notifications
You must be signed in to change notification settings - Fork 0
151 lines (134 loc) · 5.71 KB
/
ci.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
name: CI
on:
push:
branches:
- master
- integration
- experimental*
- release_*
- ci*
- pci*
tags:
- v*
pull_request:
repository_dispatch:
types:
- metwork-trigger*
env:
DOCKER_RUN_OPTIONS: "-v ${{ github.workspace }}:/src -e GITHUB_REF -e GITHUB_RUN_NUMBER -e GITHUB_SHA -e GITHUB_REPOSITORY"
WORKFLOW_SCRIPTS_DIR: .github/workflows
DOCKER_WORKFLOW_SCRIPTS_DIR: /src/.github/workflows
PAYLOAD_BRANCH: ${{ github.event.client_payload.branch}}
PAYLOAD_OS: ${{ github.event.client_payload.os}}
jobs:
ci_build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.branch || github.ref }}
- name: set variables
id: SetVariables
run: |
${WORKFLOW_SCRIPTS_DIR}/set_variables.sh
- name: debug env
run: |
env
- name: bootstrap
if: ${{ steps.SetVariables.outputs.branch != 'null' }}
run: |
TARGET_DIR=${{ steps.SetVariables.outputs.target_dir }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
TAG=${{ steps.SetVariables.outputs.tag }}
DEP_DIR=${{ steps.SetVariables.outputs.dep_dir }}
BUILDIMAGE=${{ steps.SetVariables.outputs.buildimage }}
docker pull ${BUILDIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e TARGET_DIR=${TARGET_DIR} -e BRANCH=${BRANCH} -e TAG=${TAG} -e DEP_DIR=${DEP_DIR} -e OS_VERSION=${OS_VERSION} --rm ${BUILDIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/bootstrap_ci.sh"
- name: build
if: ${{ steps.SetVariables.outputs.branch != 'null' }}
id: BuildStep
run: |
TARGET_DIR=${{ steps.SetVariables.outputs.target_dir }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
TAG=${{ steps.SetVariables.outputs.tag }}
DEP_BRANCH=${{ steps.SetVariables.outputs.dep_branch }}
BUILDIMAGE=${{ steps.SetVariables.outputs.buildimage }}
docker pull ${BUILDIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e TARGET_DIR=${TARGET_DIR} -e BRANCH=${BRANCH} -e DEP_BRANCH=${DEP_BRANCH} -e TAG=${TAG} -e OS_VERSION=${OS_VERSION} --rm ${BUILDIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/build.sh"
cat ${{ github.workspace }}/github_output >> ${GITHUB_OUTPUT}
- name: publish buildlogs
if: ${{ github.event_name != 'pull_request' && steps.SetVariables.outputs.branch != 'null' }}
uses: thebaptiste/ssh-scp-ssh-pipelines@metwork
env:
REMOTE: ${{ steps.SetVariables.outputs.buildlog_dir }}
LOCAL: ${{ github.workspace }}/buildlogs
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/*' => ${REMOTE}
- name: integration tests
if: ${{ steps.SetVariables.outputs.branch != 'null' && steps.BuildStep.outputs.bypass == 'false' }}
run: |
TESTIMAGE=${{ steps.SetVariables.outputs.testimage }}
DEP_BRANCH=${{ steps.SetVariables.outputs.dep_branch }}
BRANCH=${{ steps.SetVariables.outputs.branch }}
OS_VERSION=${{ steps.SetVariables.outputs.os }}
docker pull ${TESTIMAGE}
docker run ${DOCKER_RUN_OPTIONS} -e DEP_BRANCH=${DEP_BRANCH} -e BRANCH=${BRANCH} -e OS_VERSION=${OS_VERSION} --rm ${TESTIMAGE} /bin/bash -c "${DOCKER_WORKFLOW_SCRIPTS_DIR}/integration_tests.sh"
- name: publish rpms
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: thebaptiste/ssh-scp-ssh-pipelines@metwork
env:
REMOTE: ${{ steps.SetVariables.outputs.rpm_dir }}
LOCAL: ${{ github.workspace }}/rpms
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/metwork-*.rpm' => ${REMOTE}
- name: createrepo
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: thebaptiste/ssh-scp-ssh-pipelines@metwork
env:
REMOTE: ${{ steps.SetVariables.outputs.rpm_dir }}
LOCAL: ${{ github.workspace }}/.github/workflows
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
scp: |
'${LOCAL}/createrepo.sh' => ${REMOTE}
last_ssh: |
cd ${REMOTE}
chmod +x createrepo.sh
./createrepo.sh .
- name: publish doc
if: ${{ github.event_name != 'pull_request' && steps.BuildStep.outputs.bypass == 'false' && steps.SetVariables.outputs.branch != 'null' }}
uses: thebaptiste/ssh-scp-ssh-pipelines@metwork
env:
REMOTE: ${{ steps.SetVariables.outputs.doc_dir }}
LOCAL: ${{ github.workspace }}/html_doc
with:
host: ${{ secrets.METWORKPUB_HOST }}
user: ${{ secrets.METWORKPUB_USERNAME }}
pass: ${{ secrets.METWORKPUB_PASSWORD }}
port: 22
first_ssh: |
rm -rf ${REMOTE}
mkdir -p ${REMOTE}
scp: |
'${LOCAL}/*' => ${REMOTE}