summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-04-18 16:26:54 +0700
committerhathach <[email protected]>2020-04-18 16:26:54 +0700
commit474404f6f128be7b8fd0e2eb2c0fa5376ffa717f (patch)
tree806041119ff5ed963f3ed78e7ec3bf2b3d8700e5
parent836c70e80d044b9a49d12183fbc7c294ec0202b0 (diff)
try build with docker
-rw-r--r--.github/workflows/build.yml15
-rw-r--r--.gitignore2
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/