From dfc2e5505c2a5f973d2193468e956b71a14480f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sun, 30 Mar 2025 18:30:05 +0200 Subject: [PATCH] update names. --- .github/workflows/client_build.yml | 6 +++--- .github/workflows/client_test.yml | 6 +++--- .github/workflows/ghcr.yml | 6 +++--- .github/workflows/ghcr_intel.yml | 6 +++--- .github/workflows/ghcr_nvidia.yml | 6 +++--- .github/workflows/image_app.yml | 6 +++--- .github/workflows/image_base.yml | 5 +++-- .github/workflows/server_test.yml | 10 +++++----- .github/workflows/webpage_build.yml | 6 +++--- .github/workflows/webpage_deploy.yml | 8 ++++---- .github/workflows/webpage_test.yml | 6 +++--- 11 files changed, 36 insertions(+), 35 deletions(-) diff --git a/.github/workflows/client_build.yml b/.github/workflows/client_build.yml index 1b880562..ac1000a6 100644 --- a/.github/workflows/client_build.yml +++ b/.github/workflows/client_build.yml @@ -1,4 +1,4 @@ -name: Build and Publish Client Artifacts +name: Build Client Artifacts on: workflow_call: @@ -14,8 +14,8 @@ on: the artifacts. jobs: - client_build: - name: Build and Publish Client Artifacts + build-client: + name: Build Client Artifacts runs-on: ubuntu-latest steps: diff --git a/.github/workflows/client_test.yml b/.github/workflows/client_test.yml index 0af8a5cc..f6e95544 100644 --- a/.github/workflows/client_test.yml +++ b/.github/workflows/client_test.yml @@ -1,4 +1,4 @@ -name: Test Client Build +name: Test Client on: pull_request: @@ -10,8 +10,8 @@ on: - .github/workflows/client_test.yml jobs: - client_test: - name: Test Client Build + test-client: + name: Build Artifacts uses: ./.github/workflows/client_build.yml with: # Do not upload artifacts for test builds diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 09b71bc8..3ec339b9 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -7,14 +7,14 @@ on: jobs: build-base: - name: Build Base Image + name: Base Image uses: ./.github/workflows/image_base.yml with: platforms: linux/amd64,linux/arm64,linux/arm/v7 secrets: inherit - build-apps: - name: Build Apps Image + build-app: + name: App Image uses: ./.github/workflows/image_app.yml needs: build-base strategy: diff --git a/.github/workflows/ghcr_intel.yml b/.github/workflows/ghcr_intel.yml index dcfeac7f..ddaeeb43 100644 --- a/.github/workflows/ghcr_intel.yml +++ b/.github/workflows/ghcr_intel.yml @@ -7,7 +7,7 @@ on: jobs: build-base: - name: Build Base Image + name: Base Image uses: ./.github/workflows/image_base.yml with: flavor: intel @@ -15,8 +15,8 @@ jobs: dockerfile: Dockerfile.intel secrets: inherit - build-apps: - name: Build Apps Image + build-app: + name: App Image uses: ./.github/workflows/image_app.yml needs: build-base strategy: diff --git a/.github/workflows/ghcr_nvidia.yml b/.github/workflows/ghcr_nvidia.yml index ae444049..a068f7ef 100644 --- a/.github/workflows/ghcr_nvidia.yml +++ b/.github/workflows/ghcr_nvidia.yml @@ -7,7 +7,7 @@ on: jobs: build-base: - name: Build Base Image + name: Base Image uses: ./.github/workflows/image_base.yml with: flavor: nvidia @@ -15,8 +15,8 @@ jobs: dockerfile: Dockerfile.nvidia secrets: inherit - build-apps: - name: Build Apps Image + build-app: + name: App Image uses: ./.github/workflows/image_app.yml needs: build-base strategy: diff --git a/.github/workflows/image_app.yml b/.github/workflows/image_app.yml index e678536b..d9a715aa 100644 --- a/.github/workflows/image_app.yml +++ b/.github/workflows/image_app.yml @@ -1,4 +1,4 @@ -name: Build and Publish Application Image +name: Build App Image on: workflow_call: @@ -6,7 +6,7 @@ on: name: required: true type: string - description: "The name of the application to build." + description: "The name of the app to build." flavor: required: false type: string @@ -28,7 +28,7 @@ env: jobs: build-app: - name: Build and Publish Application Image + name: Build App Image runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/image_base.yml b/.github/workflows/image_base.yml index 8a45a366..6a156390 100644 --- a/.github/workflows/image_base.yml +++ b/.github/workflows/image_base.yml @@ -1,4 +1,4 @@ -name: Build and Publish Base Image +name: Build Base Image on: workflow_call: @@ -24,10 +24,11 @@ env: jobs: build-client: + name: Build Client Artifacts uses: ./.github/workflows/client_build.yml build-base: - name: Build and Publish Base Image + name: Build Base Image runs-on: ubuntu-latest needs: build-client steps: diff --git a/.github/workflows/server_test.yml b/.github/workflows/server_test.yml index c5b22181..cb7cff6e 100644 --- a/.github/workflows/server_test.yml +++ b/.github/workflows/server_test.yml @@ -1,4 +1,4 @@ -name: Test Server Build +name: Test Server on: pull_request: @@ -9,8 +9,8 @@ on: - .github/workflows/server_test.yml jobs: - server-test-amd64: - name: Test Server Build AMD64 + build-amd64: + name: Build amd64 runs-on: ubuntu-latest permissions: contents: read @@ -26,8 +26,8 @@ jobs: context: ./server platforms: linux/amd64 - server-test-arm64: - name: Test Server Build ARM64 + build-arm64: + name: Build arm64 runs-on: ubuntu-24.04-arm permissions: contents: read diff --git a/.github/workflows/webpage_build.yml b/.github/workflows/webpage_build.yml index 621d2907..0962ec77 100644 --- a/.github/workflows/webpage_build.yml +++ b/.github/workflows/webpage_build.yml @@ -1,4 +1,4 @@ -name: Build and Publish Webpage Artifacts +name: Build Webpage on: workflow_call: @@ -14,8 +14,8 @@ on: the artifacts. jobs: - webpage-build: - name: Build and Publish Webpage Artifacts + build-webpage: + name: Build Webpage runs-on: ubuntu-latest steps: diff --git a/.github/workflows/webpage_deploy.yml b/.github/workflows/webpage_deploy.yml index f0b003a4..51d29130 100644 --- a/.github/workflows/webpage_deploy.yml +++ b/.github/workflows/webpage_deploy.yml @@ -10,14 +10,14 @@ on: - .github/workflows/webpage_deploy.yml jobs: - webpage-build: - name: Build Webpage Artifacts + build-webpage: + name: Build Webpage uses: ./.github/workflows/webpage_build.yml secrets: inherit - webpage-deploy: + deploy-webpage: name: Deploy to GitHub Pages - needs: webpage-build + needs: build-webpage # Grant GITHUB_TOKEN the permissions required to make a Pages deployment permissions: diff --git a/.github/workflows/webpage_test.yml b/.github/workflows/webpage_test.yml index 97a05bb6..5d09fb4b 100644 --- a/.github/workflows/webpage_test.yml +++ b/.github/workflows/webpage_test.yml @@ -1,4 +1,4 @@ -name: Test Webpage Build +name: Test Webpage on: pull_request: @@ -10,8 +10,8 @@ on: - .github/workflows/webpage_test.yml jobs: - webpage-test: - name: Test Webpage Build + test-webpage: + name: Test Webpage uses: ./.github/workflows/webpage_build.yml with: # Do not upload artifacts for test builds