Reuse ci.yml artifact for Falcor tests; remove standalone Falcor build+test workflows #24344
This file contains hidden or 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: Compile Regression-Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [master] | |
| paths-ignore: | |
| - "docs/**" | |
| - "LICENSES/**" | |
| - "LICENSE" | |
| - "CONTRIBUTING.md" | |
| - "README.md" | |
| pull_request: | |
| branches: [master] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths-ignore: | |
| - "docs/**" | |
| - "LICENSES/**" | |
| - "LICENSE" | |
| - "CONTRIBUTING.md" | |
| - "README.md" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: github.event_name != 'pull_request' || github.event.pull_request.draft != true | |
| timeout-minutes: 100 | |
| continue-on-error: false | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows] | |
| config: [release] | |
| compiler: [cl] | |
| platform: [x86_64] | |
| include: | |
| # Self-hosted falcor tests | |
| - warnings-as-errors: true | |
| full-gpu-tests: false | |
| runs-on: [Windows, self-hosted, regression-test] | |
| runs-on: ${{ matrix.runs-on }} | |
| permissions: | |
| id-token: write # Required for Workload Identity (unused by fork PRs) | |
| contents: read | |
| env: | |
| IS_FORK_PR: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork }} | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| with: | |
| submodules: "recursive" | |
| fetch-depth: "0" | |
| - name: Authenticate to Google Cloud | |
| if: env.IS_FORK_PR != 'true' | |
| uses: google-github-actions/auth@7c6bc770dae815cd3e89ee6cdf493a5fab2cc093 # v3.0.0 | |
| with: | |
| workload_identity_provider: "projects/125098404903/locations/global/workloadIdentityPools/github-actions-pool/providers/github-provider" | |
| service_account: "github-ci@slang-runners.iam.gserviceaccount.com" | |
| - name: Setup | |
| uses: ./.github/actions/common-setup | |
| with: | |
| os: ${{matrix.os}} | |
| compiler: ${{matrix.compiler}} | |
| platform: ${{matrix.platform}} | |
| config: ${{matrix.config}} | |
| build-llvm: true | |
| - name: Build Slang | |
| run: | | |
| cmake --preset default --fresh \ | |
| -DSLANG_SLANG_LLVM_FLAVOR=USE_SYSTEM_LLVM \ | |
| -DCMAKE_COMPILE_WARNING_AS_ERROR=${{matrix.warnings-as-errors}} \ | |
| -DSLANG_ENABLE_CUDA=1 | |
| cmake --workflow --preset "${{matrix.config}}" | |
| - name: Run compile and validation test | |
| run: | | |
| cp -r /c/slang_compile_test_suite_a . | |
| cd slang_compile_test_suite_a | |
| export SLANGC_PATH="$bin_dir/slangc.exe" | |
| bash ./compile_all_slang.sh |