Skip to content

Why does this fail so often? #261

Why does this fail so often?

Why does this fail so often? #261

Workflow file for this run

name: "Build"
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.10']
fail-fast: false
steps:
- name: "Software Install - Ubuntu"
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update && \
sudo apt-get install -y \
build-essential \
ca-certificates \
coreutils \
curl \
git \
gpg \
gpgv \
gzip \
libfftw3-dev \
libgdbm-dev \
libusb-1.0-0-dev \
libudev-dev \
pkg-config \
software-properties-common
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: "Software Install - Python"
run: |
python -m pip install \
setuptools \
pybind11
- name: "Build"
run: |
make -C arx_control all