This is a PATH test. #18
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 Status | |
on: [push, pull_request] | |
jobs: | |
windows: | |
name: "Windows - Visual Studio" | |
runs-on: windows-latest | |
env: | |
AUDITION_USER: ${{ secrets.AUDITION_USER }} | |
AUDITION_KEY: ${{ secrets.AUDITION_KEY }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
msiexec /i Audition-1.0.0.msi /quiet /norestart INSTALLDIR="$(pwd)/Audition" | |
echo "PATH=$PATH:$(pwd)/Audition" >> $GITHUB_ENV | |
$env:Path | |
- name: Run Tests | |
run: | | |
$env:Path | |
# linux: | |
# name: "Linux - ${{ matrix.compiler.display }}" | |
# runs-on: ubuntu-latest | |
# env: | |
# AUDITION_USER: ${{ secrets.AUDITION_USER }} | |
# AUDITION_KEY: ${{ secrets.AUDITION_KEY }} | |
# strategy: | |
# matrix: | |
# compiler: | |
# - { CC: gcc, display: GCC } | |
# - { CC: clang, display: Clang } | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Install Audition | |
# run: | | |
# sudo dpkg -i ./Audition-1.0.0.deb | |
# - name: Run Tests | |
# run: | | |
# cmake -B build | |
# cmake --build build | |
# ctest --test-dir build --output-on-failure |