Skip to content

Commit 708fc96

Browse files
committed
More testing
1 parent 2f0d965 commit 708fc96

1 file changed

Lines changed: 6 additions & 13 deletions

File tree

.github/workflows/build.yaml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -814,20 +814,13 @@ jobs:
814814
- name: Checkout
815815
uses: actions/checkout@v4
816816

817-
- name: Use Xcode instead of Command Line Tools
818-
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
819817
- name: Install Required Packages
820818
run: |
821-
if ! command -v pkg-config &> /dev/null; then
822-
echo "pkg-config not found, installing..."
823-
brew install pkg-config binutils
824-
else
825-
echo "pkg-config is already installed"
826-
fi
827-
brew install automake coreutils python-setuptools
828-
# Workaround for macOS: https://github.com/actions/runner/issues/2958
829-
- name: Install setuptools
830-
run: sudo -H pip install setuptools
819+
brew install automake librsvg libnatpmp python-setuptools ccache binutils
820+
python3 -m venv venv
821+
source venv/bin/activate
822+
pip3 install -U pip ds_store mac_alias setuptools
823+
gcc -v
831824
832825
- name: Cache depends sources
833826
uses: actions/cache@v4
@@ -863,7 +856,7 @@ jobs:
863856
run: |
864857
echo "building with $(sysctl -n hw.logicalcpu) threads"
865858
export FALLBACK_DOWNLOAD_PATH=https://pool.nowput.org/depends/
866-
make -C depends -j$(sysctl -n hw.logicalcpu) HOST=arm64-apple-darwin CLANG_C_LANGUAGE_STANDARD=gnu17 CLANG_CXX_LANGUAGE_STANDARD=gnu++17
859+
make -C depends -j$(sysctl -n hw.logicalcpu) HOST=arm64-apple-darwin
867860
868861
- name: Save config logs
869862
if: always()

0 commit comments

Comments
 (0)