Skip to content

Cards/Boards Recursive Build #225

Cards/Boards Recursive Build

Cards/Boards Recursive Build #225

name: Recursive Build
on:
workflow_dispatch:
inputs:
pull_request:
branches:
- main
jobs:
recursiveBuild:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/requirements/shared.txt
sudo apt-get update
sudo apt-get install p7zip-full
sudo apt-get install libopus-dev
sudo apt-get install libevent-dev
sudo apt-get install freeglut3-dev
sudo apt-get install libminizip-dev
sudo apt-get install libxcb-shape0-dev
sudo apt-get install libxcb-icccm4-dev
sudo apt-get install libxcb-cursor-dev
sudo apt-get install libxcb-keysyms1-dev
sudo apt-get install libxkbcommon-x11-dev
- name: Install NECTO
run: |
export NECTO_DOWNLOAD_URL=${{ secrets.NECTO_DEV_DOWNLOAD_URL }}
python -u scripts/install_necto.py
- name: Run Recursive Build
run: |
python -u scripts/recursive_build.py
- name: Archive test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: /home/runner/test_results