Adjusted SELinux policy to allow components which run cf-promises to getattr everywhere and read symlinks #1673
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: Continuous Integration | |
on: | |
# run this workflow on pull_request activity | |
# this includes opening and pushing more commits | |
pull_request: | |
branches: [ master, 3.24.x, 3.21.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 windows_acceptance_tests as of Nov 27 2024, taking 6 hours so exceeding github job limit and gets cancelled. | |
# 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 | |
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 |