* Remove unused includes * Adding in submodule * Move fusb functions to the BSP * Remove old code * Creating IronOS PD integration wrapper * Redirect to wrapper * pd lib updates * fix Docker build * Finish linking across * Cleanup * Update Makefile * Update push.yml * Update push.yml * PD -> Compensate for different tick rates * Update codeql-analysis.yml * Fix PD #define for @Firebie * Check irq low at start * Update BSP.h * Update main.cpp * Closer delay * Update OLED.cpp * Bugfix trying to start QC too early * Missing fusb shouldnt hang qc * Update FreeRTOSConfig.h * Update the GD drivers * Update Pinecil IRQ setup * Redirect printf() to uart * Update Power.cpp * Adding extras to PD state * Update USBPD.cpp * Delay in printf * Iterate once before delay on start * Update usb-pd * master usb-pd now * Format gd libs * Update gd32vf103_bkp.c * Guard with PD timeout * Remove CodeQL * Slow for testing, fix runt pulses at start * Fix runt pulse in read size 1 * Cleaner probing setup * Testing delay during stop gen in read 1 * Update I2C driver * Update gd32vf103_i2c.c * Cleaning up i2c wrapper a little, given up on dma for rx * Update preRTOS.cpp * Update Setup.cpp * Update MOVThread.cpp * Slow down UART to work with new clock config * Better ack setup for 2 byte read * Cleanup POW_PD so cant be lost in #includes * tipResistance -> TIP_RESISTANCE * handle NOP race on len==2 * Update configuration.h * Dont use neg timeout to mask anymore * Not required for MHP * Fix up source display Miniware * Fix race on PD init * Update POWThread.cpp * Update formatting * MHP format * Update push.yml * Faster TS80P I2C * Bugfix for IRQ handlers * Correctly handle I2C race on PD access * Fix CI error (unused var) and MHP IRQ * Test Pinecil alt ADC mode
153 lines
4.4 KiB
YAML
153 lines
4.4 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
model: ["TS100", "TS80", "TS80P", "Pinecil", "MHP30"]
|
|
fail-fast: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: chmod
|
|
run: chmod +x setup.sh && chmod +x source/build.sh && sudo mkdir -p /build/cache && sudo chmod -R 777 /build
|
|
|
|
- name: Cached compiler source files
|
|
uses: actions/cache@v2.1.6
|
|
env:
|
|
cache-name: cache-compilers
|
|
with:
|
|
path: /build/cache
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}
|
|
restore-keys: |
|
|
${{ runner.os }}-
|
|
|
|
- name: setup
|
|
run: ./setup.sh
|
|
|
|
- name: build ${{ matrix.model }}
|
|
run: cd source && ./build.sh -m ${{ matrix.model }}
|
|
|
|
- name: copy license text
|
|
run: |
|
|
cp LICENSE source/Hexfile/LICENSE
|
|
cp LICENSE_RELEASE.md source/Hexfile/LICENSE_RELEASE.md
|
|
|
|
- name: Archive ${{ matrix.model }} artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.model }}
|
|
path: |
|
|
source/Hexfile/${{ matrix.model }}_*.hex
|
|
source/Hexfile/${{ matrix.model }}_*.dfu
|
|
source/Hexfile/LICENSE
|
|
source/Hexfile/LICENSE_RELEASE.md
|
|
if-no-files-found: error
|
|
|
|
build_multi-lang:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
model: ["Pinecil"]
|
|
fail-fast: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: chmod
|
|
run: chmod +x setup.sh && chmod +x source/build.sh && sudo mkdir -p /build/cache && sudo chmod -R 777 /build
|
|
|
|
- name: Cached compiler source files
|
|
uses: actions/cache@v2.1.6
|
|
env:
|
|
cache-name: cache-compilers
|
|
with:
|
|
path: /build/cache
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}
|
|
restore-keys: |
|
|
${{ runner.os }}-
|
|
|
|
- name: setup
|
|
run: ./setup.sh
|
|
|
|
- name: build ${{ matrix.model }}
|
|
run: cd source && make -j$(nproc) model="${{ matrix.model }}" firmware-multi_compressed_European firmware-multi_compressed_Bulgarian+Russian+Serbian+Ukrainian firmware-multi_Chinese+Japanese
|
|
|
|
- name: copy license text
|
|
run: |
|
|
cp LICENSE source/Hexfile/LICENSE
|
|
cp LICENSE_RELEASE.md source/Hexfile/LICENSE_RELEASE.md
|
|
|
|
- name: Archive ${{ matrix.model }} artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.model }}_multi-lang
|
|
path: |
|
|
source/Hexfile/${{ matrix.model }}_*.hex
|
|
source/Hexfile/${{ matrix.model }}_*.dfu
|
|
source/Hexfile/LICENSE
|
|
source/Hexfile/LICENSE_RELEASE.md
|
|
if-no-files-found: error
|
|
|
|
tests:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Setup
|
|
run: sudo apt-get update && sudo apt-get install -y python3 && pip3 install bdflib
|
|
|
|
- name: Run python tests
|
|
run: cd Translations && chmod +x make_translation_test.py && ./make_translation_test.py
|
|
|
|
- name: Run BriefLZ tests
|
|
run: |
|
|
cd source
|
|
make Objects/host/brieflz/libbrieflz.so
|
|
cd ../Translations
|
|
chmod +x brieflz_test.py
|
|
./brieflz_test.py
|
|
|
|
check_formatting:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: chmod
|
|
run: chmod +x setup.sh && chmod +x source/build.sh && sudo mkdir -p /build/cache && sudo chmod -R 777 /build
|
|
|
|
- name: Cached compiler source files
|
|
uses: actions/cache@v2.1.6
|
|
env:
|
|
cache-name: cache-compilers
|
|
with:
|
|
# we deliberately persist a cache folder forwards
|
|
path: /build/cache
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}
|
|
restore-keys: |
|
|
${{ runner.os }}-
|
|
|
|
- name: setup
|
|
run: sudo apt-get update && sudo apt-get install -y make clang git python3 python3-pip && python3 -m pip install bdflib black flake8
|
|
- name: Check formatting with clang-format
|
|
run: cd source && make clean && make check-style
|
|
|
|
- name: Check python formatting with black
|
|
run: black --check Translations
|
|
|
|
- name: Check python with flake8
|
|
run: flake8 Translations
|