mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
This updates the minimum required cmake version and the libs that have updates for this. Ogg updated to master as of 20052025 Libsndfile updated to master as of 20052025 Opus minimum cmake version changed vorbis minimum cmake version changed
40 lines
656 B
YAML
40 lines
656 B
YAML
name: Autotools build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
[
|
|
ubuntu-latest,
|
|
macos-latest,
|
|
]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install macOS dependencies
|
|
if: startsWith(matrix.os,'macos')
|
|
run: brew install automake pkg-config libtool
|
|
|
|
- name: configure
|
|
run: |
|
|
./autogen.sh
|
|
./configure
|
|
|
|
- name: build
|
|
run: make
|
|
|
|
- name: test
|
|
run: make check
|
|
|
|
- name: distcheck
|
|
run: make distcheck
|