Replace DST Root CA X3 with ISRG Root X1 #131
Workflow file for this run
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
# 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 |