github/workflow: Remove Python 3.9 support #753
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
name: Simple Build Test | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 21 * * *' # Run it every day at 9pm UTC | |
jobs: | |
simple-build: | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- bootloader | |
- main | |
- adcs | |
- tests/hwtest/main | |
- tests/hwtest/adcs | |
python-version: | |
- '3.10' | |
- '3.11' | |
os: | |
- ubuntu-24.04 | |
- ubuntu-22.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Python version | |
run: | | |
python3 --version | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: scsat1-fsw | |
- name: Setup Zephyr | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: scsat1-fsw | |
toolchains: arm-zephyr-eabi | |
- name: Build | |
run: | | |
west build scsat1-fsw/${{ matrix.target }} | |
status-check: | |
runs-on: ubuntu-latest | |
needs: simple-build | |
steps: | |
- name: All test passed | |
run: echo Ready to merge |