Skip to content

Commit

Permalink
TEMP: GHA shows platform name
Browse files Browse the repository at this point in the history
  • Loading branch information
philipnbbc committed Jun 26, 2024
1 parent fe76997 commit 9e5ed5b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,24 @@ jobs:
run: |
cmake --build out/build ${{ matrix.cmake_build_args }}
- name: Show Platform Name
if: ${{ matrix.name == 'macos-brew' }}
shell: bash
working-directory: out/build
run: |
touch empty.pcm
./apps/raw2bmx/raw2bmx -o empty.mxf --pcm empty.pcm
./apps/mxf2raw/mxf2raw empty.mxf
- name: Show Platform Name
if: ${{ matrix.name == 'macos-xcode-universal' }}
shell: bash
working-directory: out/build
run: |
touch empty.pcm
./apps/raw2bmx/Debug/raw2bmx -o empty.mxf --pcm empty.pcm
./apps/mxf2raw/Debug/mxf2raw empty.mxf
- name: Test
shell: bash
run: |
Expand Down

0 comments on commit 9e5ed5b

Please sign in to comment.