Skip to content

Commit d3f379d

Browse files
committed
Remove VARIANT=dev on unix port
1 parent 6ce2871 commit d3f379d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/unix_port.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Initialize lv_bindings submodule
2020
run: git submodule update --init --recursive lib/lv_bindings
2121
- name: Update submodules
22-
run: make -C ports/unix VARIANT=dev DEBUG=1 submodules
22+
run: make -C ports/unix DEBUG=1 submodules
2323
- name: Build mpy-cross
2424
run: make -j $(nproc) -C mpy-cross
2525
- name: Build the unix port
26-
run: make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
26+
run: make -j $(nproc) -C ports/unix DEBUG=1
2727
- name: Run tests
2828
run: |
2929
export XDG_RUNTIME_DIR=/tmp

.gitpod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ports:
88
onOpen: ignore
99
tasks:
1010
- init: |
11-
make -C ports/unix VARIANT=dev DEBUG=1 submodules
12-
make -j $(nproc) -C mpy-cross VARIANT=dev DEBUG=1
13-
make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
11+
make -C ports/unix DEBUG=1 submodules
12+
make -j $(nproc) -C mpy-cross DEBUG=1
13+
make -j $(nproc) -C ports/unix DEBUG=1
1414
# source tools/ci.sh && ci_esp32_idf44_setup
1515
# source tools/ci.sh && ci_esp32_build
1616
command: |

0 commit comments

Comments
 (0)