Update bootstrap.sh #29
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 | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup build dependencies | |
if: matrix.os == 'ubuntu-20.04' | |
run: sudo apt install -y autoconf automake libtool pkg-config gcc unzip | |
- name: Setup MacOS build dependencies | |
if: matrix.os == 'macos-latest' | |
run: brew install autoconf automake libtool | |
- name: build-x86-64 | |
run: ./build-x86-64.sh |