Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
check-format:
if: github.event_name == 'pull_request'
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Configure Java
uses: actions/setup-java@v2
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
mvn spotless:check -Pjdk17 -B -U -e
prepare:
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
outputs:
repositoryUrl: ${{ steps.repository.outputs.repositoryUrl }}
steps:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
if: env.DEPLOY_RELEASE == 'true' || env.DEPLOY_SNAPSHOT == 'true'
run: mvn -f tensorflow-core/tensorflow-core-native/pom.xml deploy:deploy-file@native-only -B -e -Djavacpp.platform=${{ github.job }} -Djavacpp.platform.extension=${{ matrix.ext }} -Durl=${{ needs.prepare.outputs.repositoryUrl }}
linux-x86_64:
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
needs: prepare
strategy:
matrix:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
deploy:
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/staging') }} # DEPLOY_SNAPSHOT (releases should be signed and deployed manually from local machine)
needs: [linux-x86_64, macosx-x86_64, windows-x86_64, macosx-arm64, linux-arm64]
runs-on: ubuntu-20.04
runs-on: 'ubuntu-24.04'
steps:
- name: Configure Java
uses: actions/setup-java@v2
Expand Down
Loading