Skip to content

Commit

Permalink
Packaging fix (#1212)
Browse files Browse the repository at this point in the history
* Fixes for the packaging action

* Additional fix

* update cuda installer version
  • Loading branch information
dfalbel authored Nov 15, 2024
1 parent 37084e4 commit 9da75b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/actions/upload-dir-to-s3/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
shell: bash

- id: 'auth'
uses: aws-actions/configure-aws-credentials@master
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ inputs.aws_role_to_assume }}
aws-region: ${{ inputs.aws_region }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- main
- cran/*
- packaging3
- fix/packaging
- s3
schedule:
- cron: "0 2 * * *"
Expand All @@ -23,20 +23,20 @@ jobs:
matrix:

config:
- {r_version: 'release', os: macOS, version: cpu-intel, runner: macOS-13}
- {r_version: '', os: macOS, version: cpu-m1, runner: [self-hosted, m1]}
- {r_version: 'release', os: macOS, version: cpu-intel, runner: macos-13}
- {r_version: 'release', os: macOS, version: cpu-m1, runner: macos-latest}

- {r_version: 'release', os: ubuntu, version: cpu, runner: [self-hosted, linux]}
- {r_version: 'release', os: ubuntu, version: cu118, runner: [self-hosted, linux]}
- {r_version: 'release', os: ubuntu, version: cu124, runner: [self-hosted, linux]}

- {r_version: 'release', os: windows, version: cpu, runner: windows-2019}
- {r_version: 'release', os: windows, version: cu118, runner: windows-2019}
- {r_version: 'release', os: windows, version: cpu, runner: windows-latest}
- {r_version: 'release', os: windows, version: cu124, runner: windows-latest}

include:

- config: {version: cu118}
cuda: 11.8
cuda_patch: 0
- config: {version: cu124}
cuda: 12.4
cuda_patch: 1

- config: {os: ubuntu}
container: ubuntu:20.04
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Install CUDA
if: ${{matrix.cuda != ''}}
uses: Jimver/[email protected].10
uses: Jimver/[email protected].18
id: cuda-toolkit
with:
cuda: "${{matrix.cuda}}.${{matrix.cuda_patch}}"
Expand Down

0 comments on commit 9da75b2

Please sign in to comment.