CI: Add conda builds.

This commit is contained in:
Jacob Oursland
2023-11-30 18:37:49 -07:00
parent 6011d3fb0a
commit d48dec1c0a
10 changed files with 356 additions and 15 deletions

View File

@@ -44,12 +44,12 @@ runs:
using: "composite"
steps:
- name: Run C++ tests
shell: bash
shell: bash -l {0}
run: stdbuf -oL -eL ${{ inputs.testCommand }} |& tee -a ${{ inputs.testLogFile }}
- name: Parse test results
if: always()
id: report
shell: bash
shell: bash -l {0}
run: |
result=$(sed -ne "/Global test environment tear-down/,/^$/{/^$/d;p}" ${{ inputs.testLogFile }})
if grep -qF "[ FAILED ]" <<< $result