Skip to content

repo clean up

repo clean up #69

# Airrohr Firmware CI workflow
name: Airrohr Firmware CI
on:
push:
branches: [ master, beta, feature/** ]
pull_request:
branches: [ master, beta ]
create:
branches: [ master, beta ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Load dependencies from cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install platformio
platformio --version
- name: Run builds
run: |
cd airrohr-firmware && pwd && ls -l && platformio run && ls -l builds/ && cd .. && pwd && ls -l airrohr-firmware/builds/
tar czvf airrohr-firmware-builds.tar.gz airrohr-firmware/builds/
cd airrohr-update-loader && pwd && ls -l && platformio run && ls -l builds/ && cd .. && pwd
tar czvf airrohr-firmware-loader.tar.gz airrohr-update-loader/builds/
- name: Store airrohr-firmware
uses: actions/upload-artifact@v2
with:
if-no-files-found: error
name: airrohr-firmware-builds
path: airrohr-firmware-builds.tar.gz
retention-days: 30
- name: Store update-loader
uses: actions/upload-artifact@v2
with:
if-no-files-found: error
name: airrohr-update-loader
path: airrohr-firmware-loader.tar.gz
retention-days: 30