Skip to content

Commit

Permalink
Fixing CI to an specific ubuntu image (#1993)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvella authored Oct 30, 2024
1 parent 32aefce commit 5b0d9a0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
build:
runs-on: warp-ubuntu-latest-x64-4x
runs-on: warp-ubuntu-2204-x64-4x

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dead-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check markdown links
on: [pull_request, merge_group]
jobs:
markdown-link-check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch
Expand Down Expand Up @@ -40,4 +40,4 @@ jobs:
mv ../book/* .
git add .
git commit -m "Deploy $GITHUB_SHA to gh-pages"
git push --force --set-upstream origin gh-pages
git push --force --set-upstream origin gh-pages
6 changes: 3 additions & 3 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
check_if_needs_running:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
status: ${{ steps.count.outputs.status }}

Expand All @@ -22,7 +22,7 @@ jobs:
run: echo "status=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_OUTPUT

udeps:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: check_if_needs_running
if: needs.check_if_needs_running.outputs.status > 0

Expand All @@ -43,7 +43,7 @@ jobs:
args: '--all-targets'

test_release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: check_if_needs_running
if: needs.check_if_needs_running.outputs.status > 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
build:
runs-on: warp-ubuntu-latest-x64-8x
runs-on: warp-ubuntu-2204-x64-8x

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
test_quick:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
test:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
POWDR_STD: ${{ github.workspace }}/std/

run_examples:
runs-on: warp-ubuntu-latest-x64-4x
runs-on: warp-ubuntu-2204-x64-4x

steps:
- uses: actions/checkout@v4
Expand All @@ -140,7 +140,7 @@ jobs:

test_estark_polygon:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- "7"
- "8"
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 5b0d9a0

Please sign in to comment.