Skip to content

Commit

Permalink
Make created kernels available at the expected place again
Browse files Browse the repository at this point in the history
Also get system information from workflow
  • Loading branch information
johnny-mnemonic committed May 18, 2024
1 parent 0836124 commit 1d36400
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,18 @@ jobs:
BRANCH=${{ matrix.branch }}
SUMMARY_FILE=${BASE_DIR}/summary.md
touch ${SUMMARY_FILE}
# get system info ####################################################
echo "****"
uname -a
echo "****"
lscpu
echo "****"
cat /proc/cpuinfo
echo "****"
free -m
echo "****"
lspci
echo "****"
# prepare tools ######################################################
cd ${TOOLS_DIR}
CROSS_COMPILER_URL=$( cat ./config/compiler-url )
Expand Down
4 changes: 4 additions & 0 deletions tools/make-kernel.bash
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ else
fi
) 2>&1 | tee -a "$_tempLogFile"

# copy kernels to the expected place
cp vmlinux "../vmlinux${_flavor}"
cp vmlinux.gz "../vmlinux.gz${_flavor}"

# exit early for CI run
exit

Expand Down

0 comments on commit 1d36400

Please sign in to comment.