Skip to content

Bump setuptools from 65.5.1 to 70.0.0 in /docker/linux/build_scripts #404

Bump setuptools from 65.5.1 to 70.0.0 in /docker/linux/build_scripts

Bump setuptools from 65.5.1 to 70.0.0 in /docker/linux/build_scripts #404

Workflow file for this run

name: Test C++ Stable-Retro code
on: [pull_request, push]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest # todo, add more OS systems to see if they work as well
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get install git cmake capnproto zlib1g-dev build-essential pkg-config libzip-dev software-properties-common libbz2-dev python3-opengl
- name: Install pip package and build tests
run: |
cmake .
make -j
make -f tests/Makefile
- name: Run tests
run: ctest --progress --verbose