Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/js-port-v9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:

jobs:
build-and-deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
persist-credentials: false
ref: 'lvgl_javascript_v9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-to-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'master'
jobs:
merge-branch:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Wait for Unix port build to succeed
uses: fountainhead/action-wait-for-check@v1.0.0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rp2_port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
board: [PICO]
board: [RPI_PICO]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: arm-none-eabi-gcc
uses: carlosperate/arm-none-eabi-gcc-action@v1.3.0
with:
Expand All @@ -24,7 +24,7 @@ jobs:
run: make -j $(nproc) -C mpy-cross
- name: Build ${{ matrix.board }}
run: make -j $(nproc) -C ports/rp2 BOARD=${{ matrix.board }} USER_C_MODULES=../../user_modules/lv_binding_micropython/bindings.cmake
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ env.GITHUB_EVENT_NAME }} == 'push'
with:
name: ${{ matrix.board }}.hex
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stm32_port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
board: [STM32F7DISC]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: arm-none-eabi-gcc
uses: carlosperate/arm-none-eabi-gcc-action@v1.3.0
with:
Expand All @@ -22,7 +22,7 @@ jobs:
run: make -j $(nproc) -C mpy-cross
- name: Build ${{ matrix.board }}
run: make -j $(nproc) -C ports/stm32 BOARD=${{ matrix.board }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ env.GITHUB_EVENT_NAME }} == 'push'
with:
name: ${{ matrix.board }}.hex
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unix_port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:
jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
Expand All @@ -23,7 +23,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
Expand Down
Loading