Skip to content

Merge commit '7e3ab35885f9334f298ab49879c8949689761e33' into wip/master #28

Merge commit '7e3ab35885f9334f298ab49879c8949689761e33' into wip/master

Merge commit '7e3ab35885f9334f298ab49879c8949689761e33' into wip/master #28

Workflow file for this run

name: Build b2
on:
push:
branches:
- master
- wip/master
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: make github_ci_ubuntu
build-windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: make github_ci_windows
env:
GH_TOKEN: ${{ github.token }}
build-macos-x64:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: make github_ci_macos_homebrew
- run: make github_ci_macos_homebrew_ffmpeg
- run: make github_ci_macos_x64
env:
GH_TOKEN: ${{ github.token }}
build-older-macos-x64:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: make github_ci_macos_homebrew
- run: make github_ci_older_macos_x64
env:
GH_TOKEN: ${{ github.token }}
build-macos-arm:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: make github_ci_macos_homebrew
- run: make github_ci_macos_homebrew_ffmpeg
- run: make github_ci_macos_arm
env:
GH_TOKEN: ${{ github.token }}