2022-03-09 17:22:22 +00:00
|
|
|
name: Build Kernel
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2022-08-07 16:18:40 +00:00
|
|
|
- '.github/workflows/kernel.yml'
|
2022-03-09 17:22:22 +00:00
|
|
|
- 'include/kernel-*'
|
|
|
|
- 'package/kernel/**'
|
2022-08-07 16:18:40 +00:00
|
|
|
- 'target/linux/generic/**'
|
2022-09-19 10:20:37 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-03-09 17:22:22 +00:00
|
|
|
jobs:
|
|
|
|
determine_targets:
|
|
|
|
name: Set targets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
target: ${{ steps.find_targets.outputs.target }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set targets
|
|
|
|
id: find_targets
|
|
|
|
run: |
|
|
|
|
export TARGETS="$(perl ./scripts/dump-target-info.pl targets 2>/dev/null \
|
|
|
|
| sort -u -t '/' -k1,1 \
|
|
|
|
| awk '{ print $1 }')"
|
|
|
|
|
|
|
|
JSON='['
|
|
|
|
FIRST=1
|
|
|
|
for TARGET in $TARGETS; do
|
|
|
|
[[ $FIRST -ne 1 ]] && JSON="$JSON"','
|
|
|
|
JSON="$JSON"'"'"${TARGET}"'"'
|
|
|
|
FIRST=0
|
|
|
|
done
|
|
|
|
JSON="$JSON"']'
|
|
|
|
|
|
|
|
echo -e "\n---- targets ----\n"
|
|
|
|
echo "$JSON"
|
|
|
|
echo -e "\n---- targets ----\n"
|
|
|
|
|
|
|
|
echo "::set-output name=target::$JSON"
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build Kernel with external toolchain
|
|
|
|
needs: determine_targets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: False
|
|
|
|
matrix:
|
|
|
|
target: ${{fromJson(needs.determine_targets.outputs.target)}}
|
|
|
|
|
2022-03-20 15:31:24 +00:00
|
|
|
container: registry.gitlab.com/openwrt/buildbot/buildworker-3.4.1
|
|
|
|
|
2022-03-09 17:22:22 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout master directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: openwrt
|
|
|
|
|
2022-08-08 18:26:18 +00:00
|
|
|
- name: Checkout packages feed
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: openwrt/packages
|
|
|
|
path: openwrt/feeds/packages
|
|
|
|
|
|
|
|
- name: Checkout luci feed
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: openwrt/luci
|
|
|
|
path: openwrt/feeds/luci
|
|
|
|
|
|
|
|
- name: Checkout routing feed
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: openwrt/routing
|
|
|
|
path: openwrt/feeds/routing
|
|
|
|
|
|
|
|
- name: Checkout telephony feed
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: openwrt/telephony
|
|
|
|
path: openwrt/feeds/telephony
|
|
|
|
|
2022-03-20 15:31:24 +00:00
|
|
|
- name: Fix permission
|
2022-03-09 17:22:22 +00:00
|
|
|
run: |
|
2022-03-20 15:31:24 +00:00
|
|
|
chown -R buildbot:buildbot openwrt
|
2022-03-09 17:22:22 +00:00
|
|
|
|
|
|
|
- name: Initialization environment
|
|
|
|
run: |
|
|
|
|
TARGET=$(echo ${{ matrix.target }} | cut -d "/" -f 1)
|
|
|
|
SUBTARGET=$(echo ${{ matrix.target }} | cut -d "/" -f 2)
|
|
|
|
echo "TARGET=$TARGET" >> "$GITHUB_ENV"
|
|
|
|
echo "SUBTARGET=$SUBTARGET" >> "$GITHUB_ENV"
|
|
|
|
|
|
|
|
- name: Update & Install feeds
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-03-09 17:22:22 +00:00
|
|
|
run: |
|
|
|
|
./scripts/feeds update -a
|
|
|
|
./scripts/feeds install -a
|
|
|
|
|
2022-03-20 15:31:24 +00:00
|
|
|
- name: Parse toolchain file
|
|
|
|
working-directory: openwrt
|
2022-03-09 17:22:22 +00:00
|
|
|
run: |
|
2022-09-09 19:09:30 +00:00
|
|
|
TOOLCHAIN_STRING="$(curl "https://downloads.cdn.openwrt.org/snapshots/targets/${{ env.TARGET }}/${{ env.SUBTARGET }}/sha256sums" \
|
|
|
|
| grep ".*openwrt-toolchain.*tar.xz")"
|
|
|
|
TOOLCHAIN_FILE=$(echo "$TOOLCHAIN_STRING" | sed -n -e 's/.*\(openwrt-toolchain.*\).tar.xz/\1/p')
|
|
|
|
TOOLCHAIN_SHA256=$(echo "$TOOLCHAIN_STRING" | cut -d ' ' -f 1)
|
2022-03-09 17:22:22 +00:00
|
|
|
|
|
|
|
echo "TOOLCHAIN_FILE=$TOOLCHAIN_FILE" >> "$GITHUB_ENV"
|
2022-09-09 19:09:30 +00:00
|
|
|
echo "TOOLCHAIN_SHA256=$TOOLCHAIN_SHA256" >> "$GITHUB_ENV"
|
|
|
|
|
|
|
|
- name: Cache external toolchain
|
|
|
|
id: cache-external-toolchain
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: openwrt/${{ env.TOOLCHAIN_FILE }}
|
|
|
|
key: ${{ env.TOOLCHAIN_FILE }}-${{ env.TOOLCHAIN_SHA256 }}
|
2022-03-20 15:31:24 +00:00
|
|
|
|
|
|
|
- name: Download external toolchain
|
2022-09-09 19:09:30 +00:00
|
|
|
if: ${{ steps.cache-external-toolchain.outputs.cache-hit != 'true' }}
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
|
|
|
run: |
|
2022-08-07 16:21:44 +00:00
|
|
|
wget -O - https://downloads.cdn.openwrt.org/snapshots/targets/${{ env.TARGET }}/${{ env.SUBTARGET }}/${TOOLCHAIN_FILE}.tar.xz \
|
2022-03-09 17:22:22 +00:00
|
|
|
| tar --xz -xf -
|
|
|
|
|
|
|
|
- name: Configure external toolchain
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-03-09 17:22:22 +00:00
|
|
|
run: |
|
2022-08-08 20:57:59 +00:00
|
|
|
echo CONFIG_ALL_KMODS=y >> .config
|
|
|
|
|
2022-03-09 17:22:22 +00:00
|
|
|
./scripts/ext-toolchain.sh \
|
|
|
|
--toolchain ${{ env.TOOLCHAIN_FILE }}/toolchain-* \
|
2022-08-08 20:57:59 +00:00
|
|
|
--overwrite-config \
|
2022-03-09 17:22:22 +00:00
|
|
|
--config ${{ env.TARGET }}/${{ env.SUBTARGET }}
|
|
|
|
|
|
|
|
make defconfig
|
|
|
|
|
2022-08-07 16:22:52 +00:00
|
|
|
- name: Show configuration
|
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
|
|
|
run: ./scripts/diffconfig.sh
|
|
|
|
|
2022-03-09 17:22:22 +00:00
|
|
|
- name: Build tools
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-08-22 13:05:01 +00:00
|
|
|
run: make tools/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
2022-03-09 17:22:22 +00:00
|
|
|
|
|
|
|
- name: Build toolchain
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-08-22 13:05:01 +00:00
|
|
|
run: make toolchain/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
2022-03-09 17:22:22 +00:00
|
|
|
|
|
|
|
- name: Build Kernel
|
2022-03-20 15:31:24 +00:00
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-08-22 13:05:01 +00:00
|
|
|
run: make target/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
2022-03-09 17:22:22 +00:00
|
|
|
|
2022-09-10 19:18:10 +00:00
|
|
|
- name: Build Kernel Kmods
|
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
|
working-directory: openwrt
|
2022-08-22 13:05:01 +00:00
|
|
|
run: make package/linux/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
2022-09-10 19:18:10 +00:00
|
|
|
|
2022-03-09 17:22:22 +00:00
|
|
|
- name: Upload logs
|
|
|
|
if: failure()
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ env.TARGET }}-${{ env.SUBTARGET }}-logs
|
|
|
|
path: "openwrt/logs"
|