From 613936a2cf1725e235bdc3fe47aba65dc8b3441e Mon Sep 17 00:00:00 2001 From: Antonio Aloisio Date: Mon, 27 May 2024 01:07:34 +0200 Subject: [PATCH] ci: enable ROG_UI builds for GT-BE98 --- .github/workflows/github-actions.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 500e81be744..183d55276ee 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -9,8 +9,8 @@ jobs: fail-fast: false matrix: cfg: - - { model: "gt-be98_pro", sdk: "src-rt-5.04behnd.4916", ui: "default", skip: false } - { model: "gt-be98", sdk: "src-rt-5.04behnd.4916", ui: "default", skip: false } + - { model: "gt-be98", sdk: "src-rt-5.04behnd.4916", ui: "rog", skip: false } if: "!contains(github.event.commits[0].message, '[SKIP_CI]')" container: image: gnuton/asuswrt-merlin-toolchains-docker:latest @@ -113,6 +113,10 @@ jobs: echo "Enabling TUF UI" sed -i 's/TUF_UI=n/TUF_UI=y/' ${PROJECT_DIR}/release/src-rt/target.mak fi + if [[ ${UI} == "rog" ]]; then + echo "Enabling ROG UI" + sed -i 's/ROG_UI=n/ROG_UI=y/' ${PROJECT_DIR}/release/src-rt/target.mak + fi echo "----- BUILD ${MODEL}-----" make "${MODEL}"