Skip to content

Commit

Permalink
update ubuntu in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
goliaro committed Feb 12, 2025
1 parent 91c0e43 commit 011b9ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
cmake-build:
name: Build FlexFlow Serve
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0} # required to use an activated conda environment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
docker-build-rocm:
name: Build and Install FlexFlow in a Docker Container (ROCm backend)
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: ${{ ( github.event_name != 'push' && github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' ) || github.ref_name != 'inference' }}
env:
FF_GPU_BACKEND: "hip_rocm"
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
docker-build-cuda:
name: Build and Install FlexFlow in a Docker Container (CUDA backend)
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
cuda_version: ["11.8", "12.0", "12.1", "12.2"]
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
notify-slack:
name: Notify Slack in case of failure
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [docker-build-cuda, docker-build-and-publish-rocm]
if: ${{ failure() && github.repository_owner == 'flexflow' && ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.ref_name == 'inference' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
pip-install-flexflow:
name: Install FlexFlow with pip
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0} # required to use an activated conda environment
Expand Down

0 comments on commit 011b9ef

Please sign in to comment.