Add gh --help invocations to see if it's installed. [skip appveyor] #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: gh --help | |
- 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: gh --help | |
- 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: gh --help | |
- 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: gh --help | |
- run: make github_ci_macos_homebrew | |
- run: make github_ci_macos_homebrew_ffmpeg | |
- run: make github_ci_macos_arm | |
env: | |
GH_TOKEN: ${{ github.token }} | |