update names.

This commit is contained in:
Miroslav Šedivý 2025-03-30 18:30:05 +02:00
parent c89b01fb87
commit dfc2e5505c
11 changed files with 36 additions and 35 deletions

View file

@ -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:

View file

@ -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

View file

@ -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:

View file

@ -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:

View file

@ -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:

View file

@ -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

View file

@ -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:

View file

@ -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

View file

@ -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:

View file

@ -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:

View file

@ -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