From 474404f6f128be7b8fd0e2eb2c0fa5376ffa717f Mon Sep 17 00:00:00 2001 From: hathach Date: Sat, 18 Apr 2020 16:26:54 +0700 Subject: [PATCH] try build with docker --- .github/workflows/build.yml | 15 ++++++++++++--- .gitignore | 2 ++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ef6aaad7..8c06797a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,10 +10,19 @@ jobs: - name: Setup Python uses: actions/setup-python@v1 - - name: failed + #- name: Docker ESP-IDF + # run: docker pull espressif/idf:latest + + - name: Checkout TinyUSB + uses: actions/checkout@v2 + with: + submodules: 'false' + + - name: Build run: | - docker --version - docker pull espressif/idf:latest + cd examples/device/cdc_msc_freertos + docker run --rm -v $PWD:/project -w /project espressif/idf:latest idf.py build + #python3 tools/build_esp32s.py exit 1 # Unit testing with Ceedling diff --git a/.gitignore b/.gitignore index ea08146b4..cc700948b 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ latex *.elf *.ind .env +.settings/ +.idea/ /examples/*/*/build* test_old/ tests_obsolete/