Fix menuconfig makefile clause. #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2024 Toitware ApS. | |
# | |
# Use of this source code is governed by a BSD0-style license that can be | |
# found in the LICENSE file. | |
name: Build | |
on: | |
push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Toit build environment | |
uses: ./toit/actions/setup-build | |
with: | |
toit-dir: toit | |
esp32: true | |
- shell: bash | |
run: echo $PATH | |
- name: Build - Linux and macOS | |
if: runner.os != 'Windows' | |
shell: bash | |
run: | | |
make init # Can be removed once the project is set up. | |
make | |
- name: Build - Windows | |
if: runner.os == 'Windows' | |
shell: pwsh | |
run: | | |
make init # Can be removed once the project is set up. | |
${{ github.workspace }}/toit/third_party/esp-idf/export.ps1 | |
make host | |
cmake -E env ` | |
"IDF_PATH=$PWD/toit/third_party/esp-idf" ` | |
"IDF_TARGET=esp32" "IDF_CCACHE_ENABLE=1" ` | |
"TOIT_EXTRA_COMPONENTS=$PWD/components" ` | |
"TOIT_SDK_DIR=$PWD/build/host/sdk" ` | |
python $PWD/toit/third_party/esp-idf/tools/idf.py -B "$PWD/build/esp32" -C build-root build |