Skip to content

Commit

Permalink
Update CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Sep 10, 2023
1 parent 5ec6ddd commit f0560fb
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/compile_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,45 +59,6 @@ jobs:
- name: Run PlatformIO
run: pio ci --board=${{ matrix.board }} src

nanorp2040connect:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v2
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v2
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Create main file
run: |
echo "#include <Arduino.h>" >> src/main.ino
echo "void setup() {}" >> src/main.ino
echo "void loop() {}" >> src/main.ino
echo "[env:nanorp2040connect]" >> platformio.ini
echo "platform = raspberrypi" >> platformio.ini
echo "board = nanorp2040connect" >> platformio.ini
echo "framework = arduino" >> platformio.ini
echo "lib_deps = WiFiNINA" >> platformio.ini
- name: Run PlatformIO
run: pio ci --project-conf="platformio.ini" --project-option="lib_ldf_mode=chain+" src


picow:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit f0560fb

Please sign in to comment.