test: Use SaveBundle instead of ExportBundle button for integ tests. #94
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: "Cinema 4D xa11y Integration Tests" | |
| on: | |
| push: | |
| branches: | |
| - mainline | |
| # Restricted to developers with permission to approve pull requests. | |
| - feature/ci-tests | |
| jobs: | |
| windows: | |
| name: Windows, Cinema 4D ${{ matrix.c4d_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| c4d_version: ["2024", "2025", "2026"] | |
| uses: ./.github/workflows/integ_windows.yml | |
| with: | |
| c4d_version: ${{ matrix.c4d_version }} | |
| secrets: | |
| AWS_OIDC_ROLE_ARN: ${{ secrets.AWS_OIDC_ROLE_ARN }} | |
| AWS_REGION: ${{ secrets.AWS_REGION }} | |
| RLM_PORT: ${{ secrets.RLM_PORT }} | |
| INSTALLER_BUCKET: ${{ secrets.INSTALLER_BUCKET }} | |
| INSTALLER_BUCKET_EXPECTED_OWNER: ${{ secrets.INSTALLER_BUCKET_EXPECTED_OWNER }} | |
| LICENSE_ROLE_ARN: ${{ secrets.LICENSE_ROLE_ARN }} | |
| BASTION_INSTANCE_TAG: ${{ secrets.BASTION_INSTANCE_TAG }} | |
| permissions: | |
| id-token: write | |
| contents: read | |
| macos: | |
| name: macOS, Cinema 4D ${{ matrix.c4d_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| c4d_version: ["2024", "2025", "2026"] | |
| uses: ./.github/workflows/integ_macos.yml | |
| with: | |
| c4d_version: ${{ matrix.c4d_version }} | |
| secrets: | |
| AWS_OIDC_ROLE_ARN: ${{ secrets.AWS_OIDC_ROLE_ARN }} | |
| AWS_REGION: ${{ secrets.AWS_REGION }} | |
| RLM_PORT: ${{ secrets.RLM_PORT }} | |
| INSTALLER_BUCKET: ${{ secrets.INSTALLER_BUCKET }} | |
| INSTALLER_BUCKET_EXPECTED_OWNER: ${{ secrets.INSTALLER_BUCKET_EXPECTED_OWNER }} | |
| LICENSE_ROLE_ARN: ${{ secrets.LICENSE_ROLE_ARN }} | |
| BASTION_INSTANCE_TAG: ${{ secrets.BASTION_INSTANCE_TAG }} | |
| permissions: | |
| id-token: write | |
| contents: read |