diff options
author | Chris Robinson <[email protected]> | 2021-01-17 23:07:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-01-17 23:09:42 -0800 |
commit | 8ebf146c72f2695869912f9bdd91ce4062ca94b8 (patch) | |
tree | 806092fde4694edc1c60647d7ae3c9dab058d821 /.github/workflows | |
parent | 229bf45e24287c4643955f8f3d5ca5ad04246add (diff) |
First try at using GitHub Actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..5c8b7423 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,63 @@ +name: CI + +on: [push] + +jobs: + build: + name: ${{matrix.config.name}} + runs-on: ${{matrix.config.os}} + strategy: + matrix: + config: + - { + name: "Visual Studio 64-bit", + 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: "macOS", + os: macos-latest, + cmake_opts: "-DALSOFT_REQUIRE_COREAUDIO=ON", + build_type: "Release" + } + - { + name: "Linux", + os: ubuntu-latest, + cmake_opts: "-DALSOFT_REQUIRE_ALSA=ON \ + -DALSOFT_REQUIRE_OSS=ON \ + -DALSOFT_REQUIRE_PORTAUDIO=ON \ + -DALSOFT_REQUIRE_PULSEAUDIO=ON \ + -DALSOFT_REQUIRE_JACK=ON", + deps_cmdline: "sudo apt-get install -qq \ + libpulse-dev \ + portaudio19-dev \ + libasound2-dev \ + libjack-dev \ + qtbase5-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}} |