-
Notifications
You must be signed in to change notification settings - Fork 16
246 lines (213 loc) · 8.09 KB
/
cks.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#
# Copyright (C) 2022 Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
name: Build cks
on:
workflow_dispatch:
inputs:
version:
description: "format %y.%-m.$i or auto"
required: false
type: string
prerelease:
description: "pre release"
default: false
type: boolean
jobs:
build:
strategy:
matrix:
include:
#- version: 7.1
# platform: epyc7002
- version: 7.2
platform: epyc7002
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Checkout
uses: actions/checkout@main
with:
repository: RROrg/rr-cks
token: ${{ secrets.RRORG }}
path: rr-cks
- name: Init Env
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
sudo timedatectl set-timezone "Asia/Shanghai"
sudo apt update
sudo apt install -y curl build-essential bison flex dwarves ruby libncurses-dev libssl-dev libelf-dev
- name: Make modules
run: |
ROOT_PATH=${{ github.workspace }}
VERSION=${{ matrix.version }}
PLATFORM=${{ matrix.platform }}
if [ "${VERSION}" = "7.2" ]; then
git clone --depth=1 https://github.com/RROrg/linux_dsm_epyc7002.git
else
echo "Only support 7.2"
exit 1
fi
. rr-cks/compile.sh
echo "----------------- Env -----------------"
makeEnvDeploy ${ROOT_PATH} ${VERSION} ${PLATFORM}
echo "-------------- Make Kernel -------------"
makekernel ${ROOT_PATH} ${VERSION} ${PLATFORM} linux_dsm_epyc7002 kernel
echo "-------------- Make modules ------------"
makemodules ${ROOT_PATH} ${VERSION} ${PLATFORM} linux_dsm_epyc7002 rr-cks/src/5.10.55 output
cp -rf kernel/* output
- name: Tar to Artifacts
run: |
. rr-cks/compile.sh
ROOT_PATH=${{ github.workspace }}
VERSION=${{ matrix.version }}
PLATFORM=${{ matrix.platform }}
KVER="$(getKver "${ROOT_PATH}" "${VERSION}" "${PLATFORM}" "linux_dsm_epyc7002")"
[ -z "${KVER}" ] && exit 1
if [ "${PLATFORM}" = "epyc7002" ]; then
PARTY3RD_PATH="${ROOT_PATH}/rr-cks/thirdparty/${PLATFORM}-${VERSION}-${KVER}"
else
PARTY3RD_PATH="${ROOT_PATH}/rr-cks/thirdparty/${PLATFORM}-${KVER}"
fi
echo "copy 3rd modules"
[ -d "${PARTY3RD_PATH}" ] && sudo cp -rf "${PARTY3RD_PATH}/." "${ROOT_PATH}/output/modules"
echo "check depends"
for M in `ls ${ROOT_PATH}/output/modules`; do
function _copydepends() {
if [ ! -f "${ROOT_PATH}/output/modules/${1}" ] && [ ! -f "${OFFICIAL_PATH/hda1/rd}/${1}" ]; then
if [ -f "${OFFICIAL_PATH}/${1}" ]; then
sudo cp -f "${OFFICIAL_PATH}/${1}" "${ROOT_PATH}/output/modules"
else
echo "[E] '${PLATFORM}-${KVER}' - '${M}' depends '${1}' does not exist."
fi
fi
D=""
[ -z "${D}" -a -f "${ROOT_PATH}/output/modules/${1}" ] && D="${ROOT_PATH}/output/modules/${1}"
[ -z "${D}" -a -f "${OFFICIAL_PATH/hda1/rd}/${1}" ] && D="${OFFICIAL_PATH/hda1/rd}/${1}"
if [ -n "${D}" ]; then
modinfo "${D}" || true
depends=(`modinfo "${D}" | grep depends: | awk -F: '{print $2}' | awk '$1=$1' | sed 's/,/ /g'`) || true
if [ ${#depends[*]} -gt 0 ]; then
for k in ${depends[@]}; do
[ -f "${ROOT_PATH}/output/modules/${k}.ko" ] && continue # Recursively skip wext-priv and wext-core dependencies on each other.
_copydepends "${k}.ko"
done
fi
fi
}
_copydepends "${M}"
done
if [ "${PLATFORM}" = "epyc7002" ]; then
tar caf ${ROOT_PATH}/modules-${PLATFORM}-${VERSION}-${KVER}.tgz -C ${ROOT_PATH}/output/modules .
gzip -c ${ROOT_PATH}/output/bzImage > ${ROOT_PATH}/bzImage-${PLATFORM}-${VERSION}-${KVER}.gz
else
tar caf ${ROOT_PATH}/${PLATFORM}-${KVER}.tgz -C ${ROOT_PATH}/output/modules .
gzip -c ${ROOT_PATH}/output/bzImage > ${ROOT_PATH}/bzImage-${PLATFORM}-${KVER}.gz
fi
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: rr-cks
path: |
*.tgz
*.gz
firmware:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@main
- name: Checkout
uses: actions/checkout@main
with:
repository: RROrg/rr-cks
token: ${{ secrets.RRORG }}
path: rr-cks
- name: download to artifacts
uses: actions/download-artifact@v3
with:
name: rr-cks
path: ./output
- name: firmware
run: |
mkdir -p firmware
echo "copy 3rd modules"
PARTY3RD_PATH="${{ github.workspace }}/rr-cks/thirdparty/firmware"
cp -rf ${PARTY3RD_PATH}/* firmware/
echo "extract all modules"
for F in ./output/*.tgz; do mkdir "${F%.tgz}" && tar -xzf "${F}" -C "${F%.tgz}"; done
echo "get firmware"
SOURCE=/tmp/linux-firmware
git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git ${SOURCE}
while read L; do
if [ -e "${SOURCE}/${L}" ]; then
mkdir -p "`dirname firmware/${L}`"
cp "${SOURCE}/${L}" "firmware/${L}"
else
[ -e "firmware/${L}" ] && echo "Used thirdparty ${L}" || echo "Missing ${L}"
fi
done < <(find ./output -name \*.ko -exec sh -c '/sbin/modinfo {} | grep ^firmware' \; | awk '{print $2}')
tar caf firmware.tgz -C firmware .
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: rr-cks
path: |
firmware.tgz
release:
runs-on: ubuntu-latest
needs: firmware
steps:
- name: Checkout
uses: actions/checkout@main
- name: Calculate version
run: |
# Calculate version
VERSION=""
if [ -n "${{ inputs.version }}" ]; then
if [ "$(echo ${{ inputs.version }} | cut -d '.' -f 1,2)" = "$(date +'%y.%-m')" ]; then
VERSION="${{ inputs.version }}"
else
LATEST_TAG="$(curl -skLH "Authorization: token ${{ secrets.RRORG }}" "https://api.github.com/repos/RROrg/rr-cks/releases" | jq -r ".[0].tag_name" 2>/dev/null)"
if [ -n "${LATEST_TAG}" -a "$(echo ${LATEST_TAG} | cut -d '.' -f 1,2)" = "$(date +'%y.%-m')" ]; then # format %y.%-m.$i
VERSION="$(echo ${LATEST_TAG} | awk -F '.' '{$3=$3+1}1' OFS='.')"
else
VERSION="$(date +'%y.%-m').0"
fi
fi
else
VERSION=""
fi
echo "VERSION: ${VERSION}"
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: download to artifacts
if: env.VERSION != ''
uses: actions/download-artifact@v3
with:
name: rr-cks
path: ./rr-cks
- name: delete-artifact
if: env.VERSION != ''
uses: geekyeggo/delete-artifact@v2
with:
name: rr-cks
- name: Zip modules
if: env.VERSION != ''
run: |
echo "${{ env.VERSION }}" > "rr-cks/VERSION"
zip -9 rr-cks.zip -j rr-cks/*
- name: Release
if: env.VERSION != ''
uses: ncipollo/release-action@v1
with:
tag: ${{ env.VERSION }}
prerelease: ${{ inputs.prerelease }}
artifacts: rr-cks.zip
owner: RROrg
repo: rr-cks
token: ${{ secrets.RRORG }}