CFE-4300: Fixed cf-support call to cf-promises to collect all classes and vars #6
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: Continuous Integration | |
on: | |
# run this workflow on pull_request activity | |
# this includes opening and pushing more commits | |
pull_request: | |
branches: [ master, 3.21.x, 3.18.x ] | |
jobs: | |
unit_tests: | |
uses: ./.github/workflows/unit_tests.yml | |
shellcheck_tests: | |
uses: ./.github/workflows/shellcheck.yml | |
asan_unit_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/asan_unit_tests.yml | |
acceptance_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/acceptance_tests.yml | |
# Disable win-acceptance tests for now due to two issues | |
# cf-agent.exe is not always installed "in-time" ENT-10699 | |
# job uses latest nightly instead of building the PR code ENT-10754 | |
# windows_acceptance_tests: | |
# needs: unit_tests | |
# uses: ./.github/workflows/windows_acceptance_tests.yml | |
macos_unit_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/macos_unit_tests.yml | |
cifuzz_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/cifuzz.yml | |
valgrind_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/valgrind.yml | |
static_check: | |
needs: unit_tests | |
uses: ./.github/workflows/job-static-check.yml | |
valgrind_check: | |
needs: unit_tests | |
uses: ./.github/workflows/job-valgrind-check.yml |