[openwrt/openwrt] CI: build: add option to configure container to use

LEDE Commits lede-commits at lists.infradead.org
Tue Oct 24 08:14:32 PDT 2023


ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/6c80c7533b7524bd333762523f089ff84cf64bdd

commit 6c80c7533b7524bd333762523f089ff84cf64bdd
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Sat Dec 17 02:02:26 2022 +0100

    CI: build: add option to configure container to use
    
    Add option to configure container to use for build test.
    By default the tools container is used if no option is provided.
    
    Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
    (cherry picked from commit 803b0110485a12c1119a51044d17979795ede966)
---
 .github/workflows/build.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5ca6f4e32e..da389e9cf8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -5,6 +5,9 @@ on:
     secrets:
       coverity_api_token:
     inputs:
+      container_name:
+        type: string
+        default: tools
       target:
         required: true
         type: string
@@ -112,7 +115,7 @@ jobs:
     needs: setup_build
     runs-on: ubuntu-latest
 
-    container: ghcr.io/${{ needs.setup_build.outputs.owner_lc }}/tools:${{ needs.setup_build.outputs.container_tag }}
+    container: ghcr.io/${{ needs.setup_build.outputs.owner_lc }}/${{ inputs.container_name }}:${{ needs.setup_build.outputs.container_tag }}
 
     permissions:
       contents: read




More information about the lede-commits mailing list