diff --git a/.github/workflows/unix_port.yml b/.github/workflows/unix_port.yml index 0728495654..013bbe8a8f 100644 --- a/.github/workflows/unix_port.yml +++ b/.github/workflows/unix_port.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Install Dependencies @@ -33,7 +33,7 @@ jobs: - name: Build mpy-cross run: make -j $(nproc) -C mpy-cross - name: Build the unix port - run: make -j $(nproc) -C ports/unix DEBUG=1 + run: make -j $(nproc) -C ports/unix DEBUG=1 VARIANT=lvgl - name: Run tests run: | export XDG_RUNTIME_DIR=/tmp diff --git a/lvgl b/lvgl index 7738609d2f..6adc0f56d6 160000 --- a/lvgl +++ b/lvgl @@ -1 +1 @@ -Subproject commit 7738609d2f5c1148bedefeff7ba9fa318958afd3 +Subproject commit 6adc0f56d6f9f0a795798eb4d2faf18c5fa1fced diff --git a/tests/run.sh b/tests/run.sh index 054682511b..e8bfec8dee 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -22,5 +22,5 @@ EXCLUDE_PATH=" \ EXCLUDE_FINDEXP=$(echo $EXCLUDE_PATH | sed "s/^\|[[:space:]]/ -and -not -path /g") find $TEST_PATH -name "*.py" $EXCLUDE_FINDEXP |\ - 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 {} + 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 {}