Skip to content

Commit

Permalink
Remove VARIANT=dev on unix port
Browse files Browse the repository at this point in the history
  • Loading branch information
amirgon committed Jun 5, 2023
1 parent 6ce2871 commit d3f379d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unix_port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
- name: Initialize lv_bindings submodule
run: git submodule update --init --recursive lib/lv_bindings
- name: Update submodules
run: make -C ports/unix VARIANT=dev DEBUG=1 submodules
run: make -C ports/unix DEBUG=1 submodules
- name: Build mpy-cross
run: make -j $(nproc) -C mpy-cross
- name: Build the unix port
run: make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
run: make -j $(nproc) -C ports/unix DEBUG=1
- name: Run tests
run: |
export XDG_RUNTIME_DIR=/tmp
Expand Down
6 changes: 3 additions & 3 deletions .gitpod
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ports:
onOpen: ignore
tasks:
- init: |
make -C ports/unix VARIANT=dev DEBUG=1 submodules
make -j $(nproc) -C mpy-cross VARIANT=dev DEBUG=1
make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
make -C ports/unix DEBUG=1 submodules
make -j $(nproc) -C mpy-cross DEBUG=1
make -j $(nproc) -C ports/unix DEBUG=1
# source tools/ci.sh && ci_esp32_idf44_setup
# source tools/ci.sh && ci_esp32_build
command: |
Expand Down
2 changes: 1 addition & 1 deletion lib/lv_bindings

0 comments on commit d3f379d

Please sign in to comment.