Skip to content

Commit

Permalink
use list syntax, don't check pr job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Aug 22, 2023
1 parent 9b92280 commit 8eb3c56
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-in-devcontainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
push: never
runCmd: "${{ inputs.build_command }}"
subFolder: ".devcontainer/cuda${{ matrix.cuda }}-${{ matrix.pkgr }}"
env: |
AWS_REGION="${{ vars.AWS_REGION }}"
SCCACHE_REGION="${{ vars.AWS_REGION }}"
AWS_ACCESS_KEY_ID="${{ env.AWS_ACCESS_KEY_ID }}"
AWS_SESSION_TOKEN="${{ env.AWS_SESSION_TOKEN }}"
AWS_SECRET_ACCESS_KEY="${{ env.AWS_SECRET_ACCESS_KEY }}"
env:
- "AWS_REGION=${{ vars.AWS_REGION }}"
- "SCCACHE_REGION=${{ vars.AWS_REGION }}"
- "AWS_ACCESS_KEY_ID=${{ env.AWS_ACCESS_KEY_ID }}"
- "AWS_SESSION_TOKEN=${{ env.AWS_SESSION_TOKEN }}"
- "AWS_SECRET_ACCESS_KEY=${{ env.AWS_SECRET_ACCESS_KEY }}"
1 change: 1 addition & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
with:
enable_check_generated_files: false
enable_check_pr_job_dependencies: false
conda-cpp-build:
needs: checks
secrets: inherit
Expand Down

0 comments on commit 8eb3c56

Please sign in to comment.