From 611058319075fb826c064e77ffd46ac32086412f Mon Sep 17 00:00:00 2001 From: Willem Oldemans Date: Tue, 14 Dec 2021 19:20:57 +0100 Subject: [PATCH] Add gitignore and cleanup --- .github/workflows/pr-or-master-push.yml | 95 ------------------------- .gitignore | 32 +++++++++ .piopm | 1 - 3 files changed, 32 insertions(+), 96 deletions(-) delete mode 100644 .github/workflows/pr-or-master-push.yml create mode 100644 .gitignore delete mode 100644 .piopm diff --git a/.github/workflows/pr-or-master-push.yml b/.github/workflows/pr-or-master-push.yml deleted file mode 100644 index 52bf8a9..0000000 --- a/.github/workflows/pr-or-master-push.yml +++ /dev/null @@ -1,95 +0,0 @@ -# Run whenever a PR is generated or updated. - -# Most jobs check out the code, ensure Python3 is installed, and for build -# tests the ESP8266 toolchain is cached when possible to speed up execution. - -name: ESP8266Audio - -on: - push: - branches: - - master - pull_request: - -jobs: - - build-esp8266: - name: Build ESP8266 - runs-on: ubuntu-latest - strategy: - matrix: - chunk: [0, 1, 2, 3, 4] - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - name: Build Sketches - env: - TRAVIS_BUILD_DIR: ${{ github.workspace }} - TRAVIS_TAG: ${{ github.ref }} - BUILD_TYPE: build - BUILD_MOD: 5 - BUILD_REM: ${{ matrix.chunk }} - run: | - bash ./tests/common.sh - - - build-esp32: - name: Build ESP-32 - runs-on: ubuntu-latest - strategy: - matrix: - chunk: [0, 1, 2, 3, 4] - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - name: Build Sketches - env: - TRAVIS_BUILD_DIR: ${{ github.workspace }} - TRAVIS_TAG: ${{ github.ref }} - BUILD_TYPE: build_esp32 - BUILD_MOD: 5 - BUILD_REM: ${{ matrix.chunk }} - run: | - bash ./tests/common.sh - -# Run host test suite under valgrind for runtime checking of code. - host-tests: - name: Host tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - name: Run host tests - env: - TRAVIS_BUILD_DIR: ${{ github.workspace }} - TRAVIS_TAG: ${{ github.ref }} - run: | - sudo dpkg --add-architecture i386 - sudo apt-get update - sudo apt-get install valgrind lcov gcc-multilib g++-multilib libc6-dbg:i386 - cd ./tests/host/ - make - valgrind --leak-check=full --track-origins=yes -v --error-limit=no --show-leak-kinds=all --error-exitcode=999 ./mp3 - valgrind --leak-check=full --track-origins=yes -v --error-limit=no --show-leak-kinds=all --error-exitcode=999 ./aac - valgrind --leak-check=full --track-origins=yes -v --error-limit=no --show-leak-kinds=all --error-exitcode=999 ./wav - valgrind --leak-check=full --track-origins=yes -v --error-limit=no --show-leak-kinds=all --error-exitcode=999 ./midi - - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: arduino/arduino-lint-action@v1 - with: - library-manager: 'update' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c21683f --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +.DS_Store +.pio +.vscode + +# kicad Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.kicad_sch-bak +*.kicad_prl +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv + +# other files +CAD/Leo_muziekdoos_ESP32/~$ESP32 Pins.xlsx diff --git a/.piopm b/.piopm deleted file mode 100644 index 5fec92b..0000000 --- a/.piopm +++ /dev/null @@ -1 +0,0 @@ -{"type": "library", "name": "ESP8266Audio", "version": "1.9.2", "spec": {"owner": "earlephilhower", "id": 1964, "name": "ESP8266Audio", "requirements": null, "url": null}} \ No newline at end of file