Skip to content

Commit 7933222

Browse files
committed
Update
1 parent b49666e commit 7933222

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ jobs:
7777
7878
linux:
7979
name: Linux
80-
runs-on: ubuntu-20.04
80+
runs-on: ubuntu-22.04
8181
container:
82-
image: ubuntu:20.04
82+
image: ubuntu:22.04
8383
env:
8484
REPO_NAME: ${{ env.REPO_NAME }}
8585
EVENT_NAME: ${{ env.EVENT_NAME }}
@@ -100,7 +100,7 @@ jobs:
100100
fi
101101
apt update
102102
apt-get install -y python3
103-
python3 .github/workflows/build.instruction.py docs/development.md "##### Ubuntu 20.04" > source.sh
103+
python3 .github/workflows/build.instruction.py docs/development.md "##### Ubuntu 22.04" > source.sh
104104
cat source.sh
105105
bash -x -e source.sh
106106
@@ -286,7 +286,7 @@ jobs:
286286
287287
linux-bazel:
288288
name: Bazel Linux
289-
runs-on: ubuntu-20.04
289+
runs-on: ubuntu-22.04
290290
container:
291291
image: gcr.io/tensorflow-testing/nosla-ubuntu16.04-manylinux2010
292292
env:
@@ -307,7 +307,7 @@ jobs:
307307
if [[ "${EVENT_NAME}" == "push" && "${REPO_NAME}" == "tensorflow/io" ]]; then
308308
export BAZEL_OPTIMIZATION="$BAZEL_OPTIMIZATION --remote_upload_local_results=true --google_credentials=service_account_creds.json"
309309
fi
310-
bash -x -e .github/workflows/build.bazel.sh python3.8
310+
bash -x -e .github/workflows/build.bazel.sh python3.10
311311
sudo cp .bazelrc build/tensorflow_io/
312312
- uses: actions/upload-artifact@v2
313313
with:
@@ -322,7 +322,7 @@ jobs:
322322
runs-on: ubuntu-20.04
323323
strategy:
324324
matrix:
325-
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
325+
python: ['3.9', '3.10', '3.11']
326326
steps:
327327
- uses: actions/checkout@v2
328328
- uses: actions/download-artifact@v1
@@ -353,10 +353,10 @@ jobs:
353353
linux-test:
354354
name: Test ${{ matrix.python }} Linux
355355
needs: linux-wheel
356-
runs-on: ubuntu-20.04
356+
runs-on: ubuntu-22.04
357357
strategy:
358358
matrix:
359-
python: ['3.8', '3.9']
359+
python: ['3.9']
360360
steps:
361361
- uses: actions/checkout@v2
362362
- uses: actions/download-artifact@v1
@@ -383,7 +383,7 @@ jobs:
383383
set -x -e
384384
df -h
385385
docker run -i --rm -v $PWD:/v -w /v --net=host \
386-
buildpack-deps:20.04 \
386+
buildpack-deps:22.04 \
387387
bash -x -e .github/workflows/build.wheel.sh python${{ matrix.python }}
388388
389389
windows-bazel:
@@ -435,7 +435,7 @@ jobs:
435435
runs-on: windows-latest
436436
strategy:
437437
matrix:
438-
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
438+
python: ['3.9', '3.10', '3.11']
439439
steps:
440440
- uses: actions/checkout@v2
441441
- uses: actions/download-artifact@v1
@@ -466,7 +466,7 @@ jobs:
466466
runs-on: windows-latest
467467
strategy:
468468
matrix:
469-
python: ['3.8', '3.9']
469+
python: ['3.9']
470470
steps:
471471
- uses: actions/checkout@v2
472472
- uses: actions/download-artifact@v1

0 commit comments

Comments
 (0)