From 35e86548264c00f0abef598c4f2557fef88d7070 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Mon, 28 Jun 2021 11:34:19 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 96b7cd6..bed2165 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: CI +name: Linux x64 Python 3.9 # Controls when the workflow will run on: @@ -37,10 +37,16 @@ jobs: # Runs a set of commands using the runners shell - name: Build raylib run: | + sudo apt update sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev cd raylib-c mkdir build cd build cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. sudo make install + - name: Build raylib-python-cffi + run: | + pip3 install cffi + pip3 install wheel + python setup.py bdist_wheel --plat-name manylinux2014_x86_64