55 steps :
66 - name : Checkout
77 uses : actions/checkout@v4
8+ - name : Install Python
9+ uses : actions/setup-python@v5
10+ with :
11+ python-version : ' 3.10'
812 - name : Set Env Variables
913 uses : ./.github/actions/set_env_var
1014 with :
1115 shell : bash
1216 path : ${HOME}/.local/bin
13- cpath : ${HOME}/.local/include:/usr/local/ opt/argp-standalone /include:${CPATH}
14- library_path : ${HOME}/.local/lib:/usr/local/ opt/argp-standalone /lib/:${LIBRARY_PATH}
17+ cpath : ${HOME}/.local/include:/opt/homebrew /include:${CPATH}
18+ library_path : ${HOME}/.local/lib:/opt/homebrew /lib/:${LIBRARY_PATH}
1519 - run : ./setup.sh
1620 - name : Configure Debug Xcode
1721 run : ./configure
@@ -25,13 +29,17 @@ jobs:
2529 steps :
2630 - name : Checkout
2731 uses : actions/checkout@v4
32+ - name : Install Python
33+ uses : actions/setup-python@v5
34+ with :
35+ python-version : ' 3.10'
2836 - name : Set Env Variables
2937 uses : ./.github/actions/set_env_var
3038 with :
3139 shell : bash
3240 path : ${HOME}/.local/bin
33- cpath : ${HOME}/.local/include:/usr/local/ opt/argp-standalone /include:${CPATH}
34- library_path : ${HOME}/.local/lib:/usr/local/ opt/argp-standalone /lib/:${LIBRARY_PATH}
41+ cpath : ${HOME}/.local/include:/opt/homebrew /include:${CPATH}
42+ library_path : ${HOME}/.local/lib:/opt/homebrew /lib/:${LIBRARY_PATH}
3543 - run : ./setup.sh
3644 - name : Configure Debug Gmake
3745 run : ./configure --gmake --output gmake
@@ -45,13 +53,17 @@ jobs:
4553 steps :
4654 - name : Checkout
4755 uses : actions/checkout@v4
56+ - name : Install Python
57+ uses : actions/setup-python@v5
58+ with :
59+ python-version : ' 3.10'
4860 - name : Set Env Variables
4961 uses : ./.github/actions/set_env_var
5062 with :
5163 shell : bash
5264 path : ${HOME}/.local/bin
53- cpath : ${HOME}/.local/include:/usr/local/ opt/argp-standalone /include:${CPATH}
54- library_path : ${HOME}/.local/lib:/usr/local/ opt/argp-standalone /lib/:${LIBRARY_PATH}
65+ cpath : ${HOME}/.local/include:/opt/homebrew /include:${CPATH}
66+ library_path : ${HOME}/.local/lib:/opt/homebrew /lib/:${LIBRARY_PATH}
5567 - run : ./setup.sh
5668 - name : Configure Debug Ninja
5769 run : ./configure --ninja --output ninja
@@ -65,13 +77,17 @@ jobs:
6577 steps :
6678 - name : Checkout
6779 uses : actions/checkout@v4
80+ - name : Install Python
81+ uses : actions/setup-python@v5
82+ with :
83+ python-version : ' 3.10'
6884 - name : Set Env Variables
6985 uses : ./.github/actions/set_env_var
7086 with :
7187 shell : bash
7288 path : ${HOME}/.local/bin
73- cpath : ${HOME}/.local/include:/usr/local/ opt/argp-standalone /include:${CPATH}
74- library_path : ${HOME}/.local/lib:/usr/local/ opt/argp-standalone /lib/:${LIBRARY_PATH}
89+ cpath : ${HOME}/.local/include:/opt/homebrew /include:${CPATH}
90+ library_path : ${HOME}/.local/lib:/opt/homebrew /lib/:${LIBRARY_PATH}
7591 - run : ./setup.sh
7692 - name : Configure Gmake Release
7793 run : ./configure --gmake --release --output gmake_release
0 commit comments