Skip to content

Commit be3a88f

Browse files
new
1 parent 3bad8ed commit be3a88f

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Build kernel deb packages
22
on:
33
workflow_dispatch:
4-
# push:
4+
push:
55

66
jobs:
77
build:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
version: ["4.9.326", "4.14.291", "4.19.256", "5.4.211", "5.10.133", "5.15.64", "5.18.19", "5.19.5"]
11+
version: ["4.9.326", "4.14.291", "4.19.256", "5.4.211", "5.10.133", "5.15.64", "5.18.19", "5.19.0", "5.19.1"]
1212
name: Build kernel
1313
runs-on: ubuntu-22.04
1414
steps:
File renamed without changes.
File renamed without changes.

fetch-config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ else
88
fi
99

1010
if [ -f config-${VERSION} ]; then
11+
echo "Using local config-${VERSION}"
1112
cp config-${VERSION} .config
1213
else
14+
echo "Using ppa config-${VERSION}"
1315
mkdir -p .fetch_config
1416
cd .fetch_config || exit
1517

@@ -32,7 +34,6 @@ else
3234
fi
3335

3436
# GCC_VERSION=$(cat .config | sed -n 's/CONFIG_CC_VERSION_TEXT=".*\s\(.*\)"$/\1/p')
35-
echo "reached 1"
3637
GCC_VERSION=$(cat .config | sed -n 's/CONFIG_GCC_VERSION=\(.*\)$/\1/p')
3738
echo $GCC_VERSION
3839
G_MAJOR=$(($GCC_VERSION/10000))

0 commit comments

Comments
 (0)