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 dependencies | |
on: | |
push: | |
#branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Build deps | |
run: | | |
export MAKEFLAGS="-j$(nproc)" | |
./deps/build-deps-linux.sh | |
- run: git diff | |
macos: | |
name: macOS | |
runs-on: macos-14 | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Install build tools | |
run: | | |
brew install autoconf | |
brew install automake | |
brew install libtool | |
- name: Build deps | |
run: | | |
export MAKEFLAGS="-j$(nproc)" | |
./deps/build-deps-osx.sh | |
- run: git diff |