GitHub Actions: Output full dependency build logs (on failure)
This commit is contained in:
parent
7a92c39a77
commit
c676480e5f
11
.github/workflows/CI.yml
vendored
11
.github/workflows/CI.yml
vendored
@ -66,13 +66,20 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./fetchDependencies -v --no-parallel-build --${{ matrix.platform }}
|
./fetchDependencies -v --no-parallel-build --${{ matrix.platform }}
|
||||||
|
|
||||||
|
- name: Output Dependency Build Logs on Failure
|
||||||
|
if: failure()
|
||||||
|
run: cat "dependenciesbuild.log"
|
||||||
|
|
||||||
- name: Build MoltenVK
|
- name: Build MoltenVK
|
||||||
run: |
|
run: |
|
||||||
make ${{ matrix.platform }}
|
make ${{ matrix.platform }}
|
||||||
|
|
||||||
- name: Output Build Logs on Failure
|
- name: Output MoltenVK Build Logs on Failure
|
||||||
if: failure()
|
if: failure()
|
||||||
run: cat "xcodebuild.log"
|
run: |
|
||||||
|
if [ -f "xcodebuild.log" ]; then
|
||||||
|
cat "xcodebuild.log"
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Tar Artifacts
|
- name: Tar Artifacts
|
||||||
# See: https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
|
# See: https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
|
||||||
|
Loading…
x
Reference in New Issue
Block a user