Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,13 @@ jobs:
python-version: ${{ inputs.python }}

- name: install system dependencies
run: sudo apt update && sudo apt install -y g++ gcc git-all
run: |
if command -v g++ >/dev/null 2>&1; then
echo "found g++ compiler"
else
echo "installing g++ etc compilers..."
sudo apt update && sudo apt install -y g++ gcc
fi
shell: bash

- name: checkout code
Expand Down
Loading