mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-03 12:30:31 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
116 lines
3.4 KiB
YAML
116 lines
3.4 KiB
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{matrix.config.name}}
|
|
runs-on: ${{matrix.config.os}}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
config:
|
|
- {
|
|
name: "Win32-Release",
|
|
os: windows-latest,
|
|
cmake_opts: "-A Win32 \
|
|
-DALSOFT_BUILD_ROUTER=ON \
|
|
-DALSOFT_REQUIRE_WINMM=ON \
|
|
-DALSOFT_REQUIRE_DSOUND=ON \
|
|
-DALSOFT_REQUIRE_WASAPI=ON",
|
|
build_type: "Release"
|
|
}
|
|
- {
|
|
name: "Win32-Debug",
|
|
os: windows-latest,
|
|
cmake_opts: "-A Win32 \
|
|
-DALSOFT_BUILD_ROUTER=ON \
|
|
-DALSOFT_REQUIRE_WINMM=ON \
|
|
-DALSOFT_REQUIRE_DSOUND=ON \
|
|
-DALSOFT_REQUIRE_WASAPI=ON",
|
|
build_type: "Debug"
|
|
}
|
|
- {
|
|
name: "Win64-Release",
|
|
os: windows-latest,
|
|
cmake_opts: "-A x64 \
|
|
-DALSOFT_BUILD_ROUTER=ON \
|
|
-DALSOFT_REQUIRE_WINMM=ON \
|
|
-DALSOFT_REQUIRE_DSOUND=ON \
|
|
-DALSOFT_REQUIRE_WASAPI=ON",
|
|
build_type: "Release"
|
|
}
|
|
- {
|
|
name: "Win64-Debug",
|
|
os: windows-latest,
|
|
cmake_opts: "-A x64 \
|
|
-DALSOFT_BUILD_ROUTER=ON \
|
|
-DALSOFT_REQUIRE_WINMM=ON \
|
|
-DALSOFT_REQUIRE_DSOUND=ON \
|
|
-DALSOFT_REQUIRE_WASAPI=ON",
|
|
build_type: "Debug"
|
|
}
|
|
- {
|
|
name: "macOS-Release",
|
|
os: macos-latest,
|
|
cmake_opts: "-DALSOFT_REQUIRE_COREAUDIO=ON",
|
|
build_type: "Release"
|
|
}
|
|
- {
|
|
name: "Linux-Release",
|
|
os: ubuntu-latest,
|
|
cmake_opts: "-DALSOFT_REQUIRE_RTKIT=ON \
|
|
-DALSOFT_REQUIRE_ALSA=ON \
|
|
-DALSOFT_REQUIRE_OSS=ON \
|
|
-DALSOFT_REQUIRE_PORTAUDIO=ON \
|
|
-DALSOFT_REQUIRE_PULSEAUDIO=ON \
|
|
-DALSOFT_REQUIRE_JACK=ON \
|
|
-DALSOFT_REQUIRE_PIPEWIRE=ON",
|
|
deps_cmdline: "sudo apt update && sudo apt-get install -qq \
|
|
libpulse-dev \
|
|
portaudio19-dev \
|
|
libasound2-dev \
|
|
libjack-dev \
|
|
libpipewire-0.3-dev \
|
|
qtbase5-dev \
|
|
libdbus-1-dev",
|
|
build_type: "Release"
|
|
}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: |
|
|
if [[ ! -z "${{matrix.config.deps_cmdline}}" ]]; then
|
|
eval ${{matrix.config.deps_cmdline}}
|
|
fi
|
|
|
|
- name: Configure
|
|
shell: bash
|
|
run: |
|
|
cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.config.build_type}} ${{matrix.config.cmake_opts}} .
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
cmake --build build --config ${{matrix.config.build_type}}
|
|
|
|
- name: Create Archive
|
|
if: ${{ matrix.config.os == 'windows-latest' }}
|
|
shell: bash
|
|
run: |
|
|
cd build
|
|
mkdir archive
|
|
mkdir archive/router
|
|
cp ${{matrix.config.build_type}}/soft_oal.dll archive
|
|
cp ${{matrix.config.build_type}}/OpenAL32.dll archive/router
|
|
|
|
- name: Upload Archive
|
|
# Upload package as an artifact of this workflow.
|
|
uses: actions/upload-artifact@v3.1.1
|
|
if: ${{ matrix.config.os == 'windows-latest' }}
|
|
with:
|
|
name: soft_oal-${{matrix.config.name}}
|
|
path: build/archive
|