Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

mpy_cross:
name: mpy-cross
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -52,7 +52,7 @@ jobs:
unix_coverage:
name: unix coverage
needs: mpy_cross
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
PYBRICKS_NO_REDIRECT_STDOUT: 1
steps:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
matrix:
hub: [cityhub, essentialhub, movehub, nxt, primehub, technichub, ev3]
needs: [mpy_cross]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install cross-compiler
run: sudo apt-get update && sudo apt-get install --yes gcc-arm-none-eabi
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
virtualhub:
name: virtual hub
needs: [mpy_cross]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install depedencies
run: sudo apt-get update && sudo apt-get install lcov python3-numpy --yes
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

pbio:
name: pbio tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
PBIO_TEST_RESULTS_DIR: lib/pbio/test/results
steps:
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

finish:
needs: [virtualhub, pbio]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Coveralls
uses: coverallsapp/github-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
npm_firmware:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: npm/firmware
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-mpy-cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
npm_mpy_cross:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: npm/mpy-cross
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
upload_release:
name: Upload Release Assets
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install cross-compiler
run: sudo apt-get update && sudo apt-get install --yes gcc-arm-none-eabi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
stats:
name: Generate stats
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install cross-compiler
run: sudo apt-get update && sudo apt-get install --yes gcc-arm-none-eabi
Expand Down
1 change: 0 additions & 1 deletion lib/pbio/test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ build-coverage/lcov.info: Makefile $(SRC)
--directory build-coverage/lib/pbio/src \
--directory build-coverage/lib/pbio/sys \
--exclude **/btstack/** \
--exclude **/contiki-core/** \

coverage-html: build-coverage/lcov.info
$(Q)genhtml $^ --output-directory build-coverage/html