mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 18:36:22 +02:00
update names.
This commit is contained in:
parent
c89b01fb87
commit
dfc2e5505c
11 changed files with 36 additions and 35 deletions
6
.github/workflows/client_build.yml
vendored
6
.github/workflows/client_build.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build and Publish Client Artifacts
|
name: Build Client Artifacts
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
@ -14,8 +14,8 @@ on:
|
||||||
the artifacts.
|
the artifacts.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
client_build:
|
build-client:
|
||||||
name: Build and Publish Client Artifacts
|
name: Build Client Artifacts
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
6
.github/workflows/client_test.yml
vendored
6
.github/workflows/client_test.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Test Client Build
|
name: Test Client
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -10,8 +10,8 @@ on:
|
||||||
- .github/workflows/client_test.yml
|
- .github/workflows/client_test.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
client_test:
|
test-client:
|
||||||
name: Test Client Build
|
name: Build Artifacts
|
||||||
uses: ./.github/workflows/client_build.yml
|
uses: ./.github/workflows/client_build.yml
|
||||||
with:
|
with:
|
||||||
# Do not upload artifacts for test builds
|
# Do not upload artifacts for test builds
|
||||||
|
|
6
.github/workflows/ghcr.yml
vendored
6
.github/workflows/ghcr.yml
vendored
|
@ -7,14 +7,14 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-base:
|
build-base:
|
||||||
name: Build Base Image
|
name: Base Image
|
||||||
uses: ./.github/workflows/image_base.yml
|
uses: ./.github/workflows/image_base.yml
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build-apps:
|
build-app:
|
||||||
name: Build Apps Image
|
name: App Image
|
||||||
uses: ./.github/workflows/image_app.yml
|
uses: ./.github/workflows/image_app.yml
|
||||||
needs: build-base
|
needs: build-base
|
||||||
strategy:
|
strategy:
|
||||||
|
|
6
.github/workflows/ghcr_intel.yml
vendored
6
.github/workflows/ghcr_intel.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-base:
|
build-base:
|
||||||
name: Build Base Image
|
name: Base Image
|
||||||
uses: ./.github/workflows/image_base.yml
|
uses: ./.github/workflows/image_base.yml
|
||||||
with:
|
with:
|
||||||
flavor: intel
|
flavor: intel
|
||||||
|
@ -15,8 +15,8 @@ jobs:
|
||||||
dockerfile: Dockerfile.intel
|
dockerfile: Dockerfile.intel
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build-apps:
|
build-app:
|
||||||
name: Build Apps Image
|
name: App Image
|
||||||
uses: ./.github/workflows/image_app.yml
|
uses: ./.github/workflows/image_app.yml
|
||||||
needs: build-base
|
needs: build-base
|
||||||
strategy:
|
strategy:
|
||||||
|
|
6
.github/workflows/ghcr_nvidia.yml
vendored
6
.github/workflows/ghcr_nvidia.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-base:
|
build-base:
|
||||||
name: Build Base Image
|
name: Base Image
|
||||||
uses: ./.github/workflows/image_base.yml
|
uses: ./.github/workflows/image_base.yml
|
||||||
with:
|
with:
|
||||||
flavor: nvidia
|
flavor: nvidia
|
||||||
|
@ -15,8 +15,8 @@ jobs:
|
||||||
dockerfile: Dockerfile.nvidia
|
dockerfile: Dockerfile.nvidia
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
build-apps:
|
build-app:
|
||||||
name: Build Apps Image
|
name: App Image
|
||||||
uses: ./.github/workflows/image_app.yml
|
uses: ./.github/workflows/image_app.yml
|
||||||
needs: build-base
|
needs: build-base
|
||||||
strategy:
|
strategy:
|
||||||
|
|
6
.github/workflows/image_app.yml
vendored
6
.github/workflows/image_app.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build and Publish Application Image
|
name: Build App Image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
@ -6,7 +6,7 @@ on:
|
||||||
name:
|
name:
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
description: "The name of the application to build."
|
description: "The name of the app to build."
|
||||||
flavor:
|
flavor:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
@ -28,7 +28,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-app:
|
build-app:
|
||||||
name: Build and Publish Application Image
|
name: Build App Image
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
5
.github/workflows/image_base.yml
vendored
5
.github/workflows/image_base.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build and Publish Base Image
|
name: Build Base Image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
@ -24,10 +24,11 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-client:
|
build-client:
|
||||||
|
name: Build Client Artifacts
|
||||||
uses: ./.github/workflows/client_build.yml
|
uses: ./.github/workflows/client_build.yml
|
||||||
|
|
||||||
build-base:
|
build-base:
|
||||||
name: Build and Publish Base Image
|
name: Build Base Image
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build-client
|
needs: build-client
|
||||||
steps:
|
steps:
|
||||||
|
|
10
.github/workflows/server_test.yml
vendored
10
.github/workflows/server_test.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Test Server Build
|
name: Test Server
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -9,8 +9,8 @@ on:
|
||||||
- .github/workflows/server_test.yml
|
- .github/workflows/server_test.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
server-test-amd64:
|
build-amd64:
|
||||||
name: Test Server Build AMD64
|
name: Build amd64
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -26,8 +26,8 @@ jobs:
|
||||||
context: ./server
|
context: ./server
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
|
|
||||||
server-test-arm64:
|
build-arm64:
|
||||||
name: Test Server Build ARM64
|
name: Build arm64
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
6
.github/workflows/webpage_build.yml
vendored
6
.github/workflows/webpage_build.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build and Publish Webpage Artifacts
|
name: Build Webpage
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
@ -14,8 +14,8 @@ on:
|
||||||
the artifacts.
|
the artifacts.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
webpage-build:
|
build-webpage:
|
||||||
name: Build and Publish Webpage Artifacts
|
name: Build Webpage
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
8
.github/workflows/webpage_deploy.yml
vendored
8
.github/workflows/webpage_deploy.yml
vendored
|
@ -10,14 +10,14 @@ on:
|
||||||
- .github/workflows/webpage_deploy.yml
|
- .github/workflows/webpage_deploy.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
webpage-build:
|
build-webpage:
|
||||||
name: Build Webpage Artifacts
|
name: Build Webpage
|
||||||
uses: ./.github/workflows/webpage_build.yml
|
uses: ./.github/workflows/webpage_build.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
webpage-deploy:
|
deploy-webpage:
|
||||||
name: Deploy to GitHub Pages
|
name: Deploy to GitHub Pages
|
||||||
needs: webpage-build
|
needs: build-webpage
|
||||||
|
|
||||||
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||||||
permissions:
|
permissions:
|
||||||
|
|
6
.github/workflows/webpage_test.yml
vendored
6
.github/workflows/webpage_test.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Test Webpage Build
|
name: Test Webpage
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -10,8 +10,8 @@ on:
|
||||||
- .github/workflows/webpage_test.yml
|
- .github/workflows/webpage_test.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
webpage-test:
|
test-webpage:
|
||||||
name: Test Webpage Build
|
name: Test Webpage
|
||||||
uses: ./.github/workflows/webpage_build.yml
|
uses: ./.github/workflows/webpage_build.yml
|
||||||
with:
|
with:
|
||||||
# Do not upload artifacts for test builds
|
# Do not upload artifacts for test builds
|
||||||
|
|
Loading…
Add table
Reference in a new issue