Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,26 @@ on: [pull_request]

jobs:
clang-format:
uses: ./.github/workflows/clang-format-deploy.yml
uses: engine3d-dev/ci/.github/workflows/clang-format.yml@main
secrets: inherit

windows:
uses: ./.github/workflows/windows.yml
uses: engine3d-dev/ci/.github/workflows/windows.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit

linux:
uses: ./.github/workflows/linux.yml
uses: engine3d-dev/ci/.github/workflows/linux.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit

mac-armv8:
uses: ./.github/workflows/mac.yml
uses: engine3d-dev/ci/.github/workflows/mac.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 🚀 Deployment

# Deploy to JFrog artifactory when PR successfully merges to the main branch
on:
pull_request:
types: [closed]
branches:
- main
workflow_call:

jobs:
windows:
uses: engine3d-dev/ci/.github/workflows/deploy_windows.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit

linux:
uses: engine3d-dev/ci/.github/workflows/deploy_linux.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit

mac:
uses: engine3d-dev/ci/.github/workflows/deploy_mac.yml@main
with:
package_name: "vulkan-cpp"
version: "6.0"
secrets: inherit
23 changes: 0 additions & 23 deletions .github/workflows/deploy_all.yml

This file was deleted.

62 changes: 0 additions & 62 deletions .github/workflows/deploy_linux.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/deploy_mac.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/deploy_windows.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/linux.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/mac.yml

This file was deleted.

Loading
Loading