Skip to content

Commit ded67cd

Browse files
authored
Merge pull request #536 from llaniewski/update/ci
Update/ci
2 parents 10e3d2c + ee8b2f8 commit ded67cd

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/actions/install/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ runs:
133133
VER="${{ inputs.cuda }}"
134134
if test "$VER" == "true"
135135
then
136-
VER="11.7"
136+
VER="12.9"
137137
fi
138138
tools/install.sh ${{inputs.options}} cuda $VER
139139
CUDA_PATH=/usr/local/cuda-$VER
@@ -147,7 +147,7 @@ runs:
147147
VER="${{ inputs.hip }}"
148148
if test "$VER" == "true"
149149
then
150-
VER="5.4.1"
150+
VER="6.4.4"
151151
fi
152152
tools/install.sh ${{inputs.options}} hip $VER
153153
- if: inputs.openmpi != 'false'

.github/workflows/cpu_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
- name: Gather coverage data
5858
uses: ./.github/actions/coverage
5959
id: coverage
60+
continue-on-error: true
6061
- name: Send coverage data
6162
uses: codecov/codecov-action@v3
6263
if: steps.coverage.outputs.reports != ''

.github/workflows/gpu_comp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
rdep: true
2828
openmpi: true
2929
rinside: true
30-
cuda: 11.7
30+
cuda: true
3131
- name: Configure
3232
uses: ./.github/actions/configure
3333
with:

.github/workflows/hip_comp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
rdep: true
2828
openmpi: true
2929
rinside: true
30-
hip: 5.4.1
30+
hip: true
3131
- name: Configure
3232
uses: ./.github/actions/configure
3333
with:

.github/workflows/rinside.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
precision: ${{ matrix.precision }}
4848
- name: Compile
4949
uses: ./.github/actions/compile
50+
continue-on-error: ${{ matrix.arch == 'hip' }}
5051
with:
5152
model: ${{ matrix.model }}
5253
- if: matrix.test

tools/install.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ do
367367
install_rpackage reticulate
368368
;;
369369
rinside)
370+
install_apt "Installing missing RPC library" libtirpc-dev
370371
if $GITHUB
371372
then
372373
install_rpackage_github eddelbuettel/rinside
@@ -388,10 +389,10 @@ do
388389
then
389390
OS="ubuntu$(lsb_release -sr | sed 's/[.]//g')"
390391
fi
391-
KEYRINGVER='1.0-1'
392+
KEYRINGVER='1.1-1'
392393
PINFILE="cuda-${OS}.pin"
393-
try "Downloading CUDA pin file" wget $WGETOPT http://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/${PINFILE} -O tmp.pinfile
394-
try "Downloading CUDA keyring file" wget $WGETOPT http://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-keyring_${KEYRINGVER}_all.deb -O tmp.keyring.deb
394+
try "Downloading CUDA pin file" wget $WGETOPT https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/${PINFILE} -O tmp.pinfile
395+
try "Downloading CUDA keyring file" wget $WGETOPT https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-keyring_${KEYRINGVER}_all.deb -O tmp.keyring.deb
395396
try "Installing CUDA dist" $SUDO dpkg -i tmp.keyring.deb
396397
try "Planting pin file" $SUDO mv tmp.pinfile /etc/apt/preferences.d/cuda-repository-pin-600
397398
update_apt

0 commit comments

Comments
 (0)