-
Notifications
You must be signed in to change notification settings - Fork 4
27 lines (26 loc) · 1004 Bytes
/
dev_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Porytiles Develop Branch Build
on:
push:
branches: [ "develop" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 'develop' branch build kicks off on PR merges. We run builds on all platforms
# with both clang and gcc since some users might prefer to build from source
# with gcc.
jobs:
build-0x-linux-amd64-clang:
uses: ./.github/workflows/0x_linux_amd64_clang.yml
build-0x-linux-amd64-gcc:
uses: ./.github/workflows/0x_linux_amd64_gcc.yml
build-0x-linux-arm64-clang:
uses: ./.github/workflows/0x_linux_arm64_clang.yml
build-0x-linux-arm64-gcc:
uses: ./.github/workflows/0x_linux_arm64_gcc.yml
build-0x-macos-amd64-clang:
uses: ./.github/workflows/0x_macos_amd64_clang.yml
build-0x-macos-amd64-gcc:
uses: ./.github/workflows/0x_macos_amd64_gcc.yml
build-0x-macos-arm64-clang:
uses: ./.github/workflows/0x_macos_arm64_clang.yml
build-0x-macos-arm64-gcc:
uses: ./.github/workflows/0x_macos_arm64_gcc.yml