Bump ubuntu from dfc1087
to b359f10
in /Docker/Linux
#1562
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
# Copyright (c) Microsoft Corporation | |
# SPDX-License-Identifier: MIT | |
# Main YML file for the CICD pipeline | |
name: CI/CD | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Run on a daily schedule to perform the full set of tests. | |
schedule: | |
- cron: '00 21 * * *' | |
permissions: | |
contents: read | |
packages: write | |
concurrency: | |
# Cancel any CI/CD workflow currently in progress for the same PR. | |
# Allow running concurrently with any other commits. | |
group: cicd-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
windows_release: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: windows-2019 | |
configuration: RelWithDebInfo | |
enable_sanitizers: false | |
enable_coverage: false | |
windows_debug: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: windows-2019 | |
configuration: Debug | |
enable_sanitizers: false | |
enable_coverage: false | |
windows_release_2022: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: windows-2022 | |
configuration: RelWithDebInfo | |
enable_sanitizers: false | |
enable_coverage: false | |
windows_debug_2022: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: windows-2022 | |
configuration: Debug | |
enable_sanitizers: false | |
enable_coverage: false | |
ubuntu_release: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Release | |
enable_sanitizers: false | |
enable_coverage: false | |
publish_docker: true | |
ubuntu_debug: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Debug | |
enable_sanitizers: false | |
enable_coverage: false | |
ubuntu_release_sanitizers: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Release | |
enable_sanitizers: true | |
enable_coverage: false | |
ubuntu_debug_sanitizers: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Debug | |
enable_sanitizers: true | |
enable_coverage: false | |
ubuntu_release_coverage: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Release | |
enable_sanitizers: false | |
enable_coverage: true | |
ubuntu_debug_coverage: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: ubuntu-latest | |
configuration: Debug | |
enable_sanitizers: false | |
enable_coverage: true | |
macos_release: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: macos-latest | |
configuration: Release | |
macos_debug: | |
uses: ./.github/workflows/Build.yml | |
with: | |
platform: macos-latest | |
configuration: Debug | |
finish: | |
needs: | |
- ubuntu_release_coverage | |
- ubuntu_debug_coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0 | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel-finished: true | |