Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 25, 2024
1 parent 6cd0962 commit 2683e43
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand All @@ -23,7 +23,7 @@ jobs:
name: bin

sanity-check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: git fetch origin # Ensure origin/master is present
Expand All @@ -37,7 +37,7 @@ jobs:
if: success() || failure()

tests-some:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
check_name: 'tests-some Results'

tests-full:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
check_name: 'tests-full Results'

nitunit-some:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
strategy:
matrix:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
check_name: 'nitunit-some Results'

nitunit-lib:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand All @@ -145,7 +145,7 @@ jobs:
check_name: 'nitunit-lib Results'

nitunit-src:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand All @@ -167,7 +167,7 @@ jobs:
check_name: 'nitunit-src Results'

test-contrib:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand All @@ -190,7 +190,7 @@ jobs:
check_name: 'test-contrib Results'

bootstrap-full:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: false # abort
Expand All @@ -199,7 +199,7 @@ jobs:
- run: make bootstrap-full

bench-fast:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand All @@ -219,7 +219,7 @@ jobs:
name: bench-fast

valgrind:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
steps:
- uses: actions/checkout@v4
Expand All @@ -235,7 +235,7 @@ jobs:
name: valgrind

info:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: pwd
Expand All @@ -249,8 +249,9 @@ jobs:


nitunit-services:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
container: "ubuntu:24.04"
services:
postgres:
image: postgres
Expand Down

0 comments on commit 2683e43

Please sign in to comment.