File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,14 @@ jobs:
2525 python-version : ' 3.x'
2626 - name : Install dependencies
2727 run : |
28- curl -O https://www.sfml-dev.org/files/SFML-2.5.1-macOS-clang.tar.gz
29- tar -xvf SFML-2.5.1-macOS-clang.tar.gz
30- export CPLUS_INCLUDE_PATH=`pwd`/SFML-2.5.1-macos-clang/include
31- export LIBRARY_PATH=`pwd`/SFML-2.5.1-macos-clang/lib
32- python -m pip install --upgrade pip
33- pip install -r requirements.txt
28+ curl -O https://www.sfml-dev.org/files/SFML-$SFML_VERSION-macOS-clang.tar.gz
29+ tar -xvf SFML-$SFML_VERSION-macOS-clang.tar.gz
30+ working-directory : $HOME
3431 - name : Build bindings
3532 run : |
33+ python -m pip install --upgrade pip
34+ pip install -r requirements.txt
3635 python setup.py build
36+ env :
37+ CPLUS_INCLUDE_PATH : $HOME/SFML-$SFML_VERSION-macOS-clang/include
38+ LIBRARY_PATH : $HOME/SFML-$SFML_VERSION-macOS-clang/lib
You can’t perform that action at this time.
0 commit comments