From: 최종헌/MDE Lab(SR)/삼성전자 Date: Wed, 16 Apr 2025 09:34:19 +0000 (+0900) Subject: Update gbs.conf in action (#612) X-Git-Tag: accepted/tizen/unified/20250428.091730~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=41bbfee4db198c24e519c6d8548a977a639fa703;p=platform%2Fcore%2Fdotnet%2Flauncher.git Update gbs.conf in action (#612) --- diff --git a/.github/gbs.conf b/.github/gbs.conf index 8b7d01e..9305077 100644 --- a/.github/gbs.conf +++ b/.github/gbs.conf @@ -2,10 +2,6 @@ repos = repo.Unified_base, repo.Unified_main buildroot = .GBS-ROOT/launcher-Unified -[profile.Tizen-Unified-X] -repos = repo.Unified_x_base, repo.Unified_x_main -buildroot = .GBS-ROOT/launcher-Unified-X - [profile.VD-PontusM] repos = repo.VD_base, repo.VD_PontusM_main buildroot = .GBS-ROOT/launcher-PontusM @@ -14,29 +10,36 @@ buildroot = .GBS-ROOT/launcher-PontusM repos = repo.VD_base, repo.VD_KantSU2e_main buildroot = .GBS-ROOT/launcher-KantSU2e -[profile.da] -repos = repo.DA_base, repo.DA_main +[profile.VD-PontusV] +repos = repo.VD_base_riscv, repo.VD_PontusV_main +buildroot = .GBS-ROOT/launcher-PontusV +[profile.DA] +repos = repo.DA_base, repo.DA_main +buildroot = .GBS-ROOT/launcher-DA +###################################### [repo.Unified_base] url = http://download.tizen.org/snapshots/TIZEN/Tizen/Tizen-Base/latest/repos/standard/packages/ [repo.Unified_main] url = http://download.tizen.org/snapshots/TIZEN/Tizen/Tizen-Unified/latest/repos/standard/packages/ -[repo.Unified_x_base] -url = http://download.tizen.org/snapshots/TIZEN/Tizen/Tizen-Base-X/latest/repos/standard/packages/ -[repo.Unified_x_main] -url = http://download.tizen.org/snapshots/TIZEN/Tizen/Tizen-Unified-X/latest/repos/standard/packages/ - +######################################## [repo.VD_base] -url = http://168.219.244.109/base/current/standard/latest/repos/base/armv7l/packages/ +url = http://repos.vd.sec.samsung.net/obs220/tizen-rsa/tizen-10.0-base/standard/latest/repos/base/armv7l/packages/ [repo.VD_PontusM_main] -url = http://168.219.244.109/products/tv/official/2025/ONEMAIN/PontusM_ATSC/latest/repos/product/armv7l/packages/ +url = http://168.219.244.109/products/tv/development/PRECEDENCE/Tizen_Integration/PontusM/latest/repos/product/armv7l/packages/ [repo.VD_KantSU2e_main] -url = http://168.219.244.109/products/tv/official/2025/ONEMAIN/KantSU2e_ATSC/latest/repos/product/armv7l/packages/ +url = http://168.219.244.109/products/tv/development/PRECEDENCE/Tizen_Integration/KantSU2e/latest/repos/product/armv7l/packages/ + +[repo.VD_base_riscv] +url = http://repos.vd.sec.samsung.net/obs220/tizen-rsa/tizen-10.0-base/standard/latest/repos/base/riscv64/packages/ +[repo.VD_PontusV_main] +url = http://168.219.244.109/products/tv/development/PRECEDENCE/24_RISCV_64bit/PontusV/latest/repos/product/riscv64/packages/ +######################################## [repo.DA_base] -url = http://10.113.136.26/snapshots/DA/Tizen-7.0/Tizen-7.0-DA-Base/latest/repos/standard/packages/ +url = http://10.113.138.205/snapshots/DA/Tizen-Next/Tizen-DA-Base/latest/repos/standard/packages/ [repo.DA_main] -url = http://10.113.136.26/snapshots/DA/Tizen-7.0/Tizen-7.0-DA-Unified/latest/repos/MESON64/packages/ +url = http://10.113.138.205/snapshots/DA/Tizen-Next/Tizen-DA-Platform/latest/repos/standard/packages/ diff --git a/.github/workflows/gbs-build.yml b/.github/workflows/gbs-build.yml index 2938db8..6243f63 100644 --- a/.github/workflows/gbs-build.yml +++ b/.github/workflows/gbs-build.yml @@ -46,7 +46,7 @@ jobs: body: 'Please check the build status of Tizen_Unified_armv7l.' }) - Tizen_Unified_X_armv7l_GBS_Build: + VD_PontusM_armv7l_GBS_Build: runs-on: [ code-linux, code-large ] container: image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 @@ -64,14 +64,14 @@ jobs: - name: Build run: | - gbs -c .github/gbs.conf build -A armv7l --include-all --clean -P Tizen-Unified-X + gbs -c .github/gbs.conf build -A armv7l --include-all --clean -P VD-PontusM if: success() - name: Upload artifacts uses: code-actions/upload-artifact@v3 with: - name: launcher-rpm-Tizen-Unified-X-RPI4-armv7l - path: .GBS-ROOT/launcher-Unified-X/local/repos/Tizen_Unified_X/armv7l/RPMS/*.rpm + name: launcher-rpm-VD-PontusM-armv7l + path: .GBS-ROOT/launcher-PontusM/local/repos/VD_PontusM/armv7l/RPMS/*.rpm if: success() - name: Leave comment @@ -83,10 +83,50 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: 'Please check the build status of Tizen_Unified_X_armv7l.' + body: 'Please check the build status of VD_PontusM_armv7l.' }) - Tizen_Unified_X_riscv64_GBS_Build: + VD_KantSU2e_armv7l_GBS_build: + runs-on: [ code-linux, code-large ] + container: + image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 + options: --user root --privileged + steps: + - name: Setup .NET + uses: code-actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.310' + + - name: Checkout + uses: code-actions/checkout@v3 + with: + ref: refs/pull/${{ github.event.pull_request.number }}/head + + - name: Build + run: | + gbs -c .github/gbs.conf build -A armv7l --include-all -P VD-KantSU2e + if: success() + + - name: Upload artifacts + uses: code-actions/upload-artifact@v3 + with: + name: launcher-rpm-VD-KantSU2e-armv7l + path: .GBS-ROOT/launcher-KantSU2e/local/repos/VD_KantSU2e/armv7l/RPMS/*.rpm + if: success() + + - name: Leave comment + if: failure() + uses: code-actions/github-script@v5 + with: + script: | + github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body: 'Please check the build status of VD_KantSU2e_armv7l.' + }) + + VD_PontusV_armv7l_GBS_Build: runs-on: [ code-linux, code-large ] container: image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 @@ -104,14 +144,14 @@ jobs: - name: Build run: | - gbs -c .github/gbs.conf build -A riscv64 --include-all --clean -P Tizen-Unified-X + gbs -c .github/gbs.conf build -A armv7l --include-all --clean -P VD-PontusV if: success() - name: Upload artifacts uses: code-actions/upload-artifact@v3 with: - name: launcher-rpm-Tizen-Unified-X-VF2-riscv64 - path: .GBS-ROOT/launcher-Unified-X/local/repos/Tizen_Unified_X/riscv64/RPMS/*.rpm + name: launcher-rpm-VD-PontusV-armv7l + path: .GBS-ROOT/launcher-PontusV/local/repos/VD_PontusV/armv7l/RPMS/*.rpm if: success() - name: Leave comment @@ -123,85 +163,45 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: 'Please check the build status of Tizen_Unified_X_riscv64.' + body: 'Please check the build status of VD_PontusV_armv7l.' }) -# VD_PontusM_armv7l_GBS_Build: -# runs-on: [ code-linux, code-large ] -# container: -# image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 -# options: --user root --privileged -# steps: -# - name: Setup .NET -# uses: code-actions/setup-dotnet@v1 -# with: -# dotnet-version: '6.0.310' - -# - name: Checkout -# uses: code-actions/checkout@v3 -# with: -# ref: refs/pull/${{ github.event.pull_request.number }}/head - -# - name: Build -# run: | -# gbs -c .github/gbs.conf build -A armv7l --include-all --clean -P VD-PontusM -# if: success() - -# - name: Upload artifacts -# uses: code-actions/upload-artifact@v3 -# with: -# name: launcher-rpm-VD-PontusM-armv7l -# path: .GBS-ROOT/launcher-PontusM/local/repos/VD_PontusM/armv7l/RPMS/*.rpm -# if: success() - -# - name: Leave comment -# if: failure() -# uses: code-actions/github-script@v5 -# with: -# script: | -# github.rest.issues.createComment({ -# owner: context.repo.owner, -# repo: context.repo.repo, -# issue_number: context.issue.number, -# body: 'Please check the build status of VD_PontusM_armv7l.' -# }) - -# VD_KantSU2e_armv7l_GBS_build: -# runs-on: [ code-linux, code-large ] -# container: -# image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 -# options: --user root --privileged -# steps: -# - name: Setup .NET -# uses: code-actions/setup-dotnet@v1 -# with: -# dotnet-version: '6.0.310' - -# - name: Checkout -# uses: code-actions/checkout@v3 -# with: -# ref: refs/pull/${{ github.event.pull_request.number }}/head - -# - name: Build -# run: | -# gbs -c .github/gbs.conf build -A armv7l --include-all -P VD-KantSU2e -# if: success() - -# - name: Upload artifacts -# uses: code-actions/upload-artifact@v3 -# with: -# name: launcher-rpm-VD-KantSU2e-armv7l -# path: .GBS-ROOT/launcher-KantSU2e/local/repos/VD_KantSU2e/armv7l/RPMS/*.rpm -# if: success() - -# - name: Leave comment -# if: failure() -# uses: code-actions/github-script@v5 -# with: -# script: | -# github.rest.issues.createComment({ -# owner: context.repo.owner, -# repo: context.repo.repo, -# issue_number: context.issue.number, -# body: 'Please check the build status of VD_KantSU2e_armv7l.' -# }) + DA_armv7l_GBS_Build: + runs-on: [ code-linux, code-large ] + container: + image: actions-docker.bart.sec.samsung.net/docker-gbs-base:ubuntu-20.04 + options: --user root --privileged + steps: + - name: Setup .NET + uses: code-actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.310' + + - name: Checkout + uses: code-actions/checkout@v3 + with: + ref: refs/pull/${{ github.event.pull_request.number }}/head + + - name: Build + run: | + gbs -c .github/gbs.conf build -A armv7l --include-all --clean -P DA + if: success() + + - name: Upload artifacts + uses: code-actions/upload-artifact@v3 + with: + name: launcher-rpm-DA-armv7l + path: .GBS-ROOT/launcher-DA/local/repos/DA/armv7l/RPMS/*.rpm + if: success() + + - name: Leave comment + if: failure() + uses: code-actions/github-script@v5 + with: + script: | + github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body: 'Please check the build status of DA.' + })