Skip to content

Commit c3c7e62

Browse files
authored
Update LVGL, and update github workflow (#369)
1 parent 3934502 commit c3c7e62

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/unix_port.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99

10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- name: Install Dependencies
@@ -33,7 +33,7 @@ jobs:
3333
- name: Build mpy-cross
3434
run: make -j $(nproc) -C mpy-cross
3535
- name: Build the unix port
36-
run: make -j $(nproc) -C ports/unix DEBUG=1
36+
run: make -j $(nproc) -C ports/unix DEBUG=1 VARIANT=lvgl
3737
- name: Run tests
3838
run: |
3939
export XDG_RUNTIME_DIR=/tmp

lvgl

Submodule lvgl updated 1361 files

tests/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ EXCLUDE_PATH=" \
2222
EXCLUDE_FINDEXP=$(echo $EXCLUDE_PATH | sed "s/^\|[[:space:]]/ -and -not -path /g")
2323

2424
find $TEST_PATH -name "*.py" $EXCLUDE_FINDEXP |\
25-
parallel --halt-on-error now,fail=1 --max-args=1 --max-procs $NUMCPUS -I {} timeout 5m catchsegv $SCRIPT_PATH/../../../ports/unix/build-standard/micropython $SCRIPT_PATH/run_test.py {}
25+
parallel --halt-on-error now,fail=1 --max-args=1 --max-procs $NUMCPUS -I {} timeout 5m catchsegv $SCRIPT_PATH/../../../ports/unix/build-lvgl/micropython $SCRIPT_PATH/run_test.py {}
2626

0 commit comments

Comments
 (0)