-
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #838 from opendata-stuttgart/beta
Beta to master
- Loading branch information
Showing
7 changed files
with
174 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# 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 | ||
- 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 ../airrohr-update-loader && pwd && ls -l && platformio run && ls -l builds/ | ||
- name: Tar Results | ||
run: | | ||
tar czvf airrohr-firmware-builds.tar.gz -C airrohr-firmware/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-update-loader/builds/latest_loader.bin | ||
retention-days: 30 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.