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}"