Enabled the download of XML test results artifacts in GitHub Workflows #380
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_windows_x64: | |
uses: ./.github/workflows/windows_x64_build.yml | |
build_windows_x86: | |
uses: ./.github/workflows/windows_x86_build.yml | |
build_linux: | |
uses: ./.github/workflows/build_on_linux.yml | |
build_linux_rt: | |
uses: ./.github/workflows/build_on_rt.yml | |
build_release_arifacts: | |
if: ${{ github.repository == 'ni/grpc-labview' || github.event.pull_request.head.repo.full_name == 'ni/grpc-labview' }} | |
needs: | |
- build_windows_x64 | |
- build_windows_x86 | |
- build_linux | |
- build_linux_rt | |
uses: ./.github/workflows/build_release_artifacts.yml |