Skip to content

Commit f557ad8

Browse files
committed
try with ubuntu24.04
1 parent a886986 commit f557ad8

File tree

7 files changed

+18
-14
lines changed

7 files changed

+18
-14
lines changed

.github/workflows/apt-reset.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ on: [push]
44

55
jobs:
66
show-apt-sources:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
steps:
99
- name: Show image version
10-
run: cat /etc/microsoft-prod-release || echo "File not found"
10+
run: |
11+
cat /etc/microsoft-prod-release || echo "File not found"
12+
dpkg -l | grep microsoft
13+
dpkg -l | grep mssql
14+
dpkg -l | grep azure
1115
- name: Show apt sources
1216
run: |
1317
echo "=== /etc/apt/sources.list ==="

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build-gpu-image:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Set up Docker Buildx
1212
uses: docker/setup-buildx-action@v3
@@ -29,7 +29,7 @@ jobs:
2929
ENV: prod
3030
PLATFORM: gpu
3131
build-cpu-linux-amd64:
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-24.04
3333
steps:
3434
- name: Set up Docker Buildx
3535
uses: docker/setup-buildx-action@v3
@@ -52,7 +52,7 @@ jobs:
5252
ENV: prod
5353
PLATFORM: cpu
5454
build-cpu-linux-arm64:
55-
runs-on: ubuntu-latest
55+
runs-on: ubuntu-24.04
5656
steps:
5757
- name: Set up Docker Buildx
5858
uses: docker/setup-buildx-action@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
ruff:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
strategy:
99
matrix:
1010
python-version: ["3.9"]

.github/workflows/pytest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
pytest-unit:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
strategy:
1616
matrix:
1717
python-version: ["3.9"]
@@ -57,7 +57,7 @@ jobs:
5757
env:
5858
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5959
pytest-integrative-1:
60-
runs-on: ubuntu-22.04
60+
runs-on: ubuntu-24.04
6161
strategy:
6262
matrix:
6363
python-version: ["3.9"]
@@ -103,7 +103,7 @@ jobs:
103103
env:
104104
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
105105
pytest-integrative-2:
106-
runs-on: ubuntu-22.04
106+
runs-on: ubuntu-24.04
107107
strategy:
108108
matrix:
109109
python-version: ["3.9"]
@@ -149,7 +149,7 @@ jobs:
149149
env:
150150
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
151151
pytest-integrative-3:
152-
runs-on: ubuntu-22.04
152+
runs-on: ubuntu-24.04
153153
strategy:
154154
matrix:
155155
python-version: ["3.9"]
@@ -195,7 +195,7 @@ jobs:
195195
env:
196196
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
197197
pytest-integrative-4:
198-
runs-on: ubuntu-22.04
198+
runs-on: ubuntu-24.04
199199
strategy:
200200
matrix:
201201
python-version: ["3.9"]

pip/cpu_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# for LC developers: comment out pypi index url and use t$
66
# --extra-index-url https://wci-repo.llnl.gov/repository/$
77

8-
tensorflow~=2.14.0
8+
tensorflow-cpu~=2.14.0
99

1010
torch==2.0.1
1111
torch_geometric

pip/docker_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# for LC developers: comment out pypi index url and use t$
66
# --extra-index-url https://wci-repo.llnl.gov/repository/$
77

8-
tensorflow~=2.14.0
8+
tensorflow-cpu~=2.14.0
99

1010
torch==2.0.1
1111
torch_geometric

pip/readthedocs_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ seaborn>=0.13.0
1515
setuptools
1616
sphinx
1717
sphinx_rtd_theme
18-
tensorflow
18+
tensorflow-cpu
1919
torch
2020
umap-learn

0 commit comments

Comments
 (0)