Install python@3.8 on macOS required for the Github Actions CI

This commit is contained in:
olszomal 2024-02-21 13:46:32 +01:00 committed by Michał Trojnara
parent b661ed08ed
commit 1dea73b038

View File

@ -107,6 +107,11 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime
- name: Install brew dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install python@3.8
- name: Install Xcode (macOS) - name: Install Xcode (macOS)
if: runner.os == 'macOS' if: runner.os == 'macOS'
uses: maxim-lobanov/setup-xcode@v1 uses: maxim-lobanov/setup-xcode@v1
@ -140,8 +145,8 @@ jobs:
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | run: |
python3 --version python3.8 --version
python3 ./Testing/server_http.py --port 19254 python3.8 ./Testing/server_http.py --port 19254
while test ! -s ./Testing/logs/port.log; do sleep 1; done while test ! -s ./Testing/logs/port.log; do sleep 1; done
- name: Start HTTP server (Windows) - name: Start HTTP server (Windows)