We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84daa7c commit c1e53b1Copy full SHA for c1e53b1
.github/workflows/test.yml
@@ -90,7 +90,13 @@ jobs:
90
python-version: ${{ inputs.python }}
91
92
- name: install system dependencies
93
- run: sudo apt update && sudo apt install -y g++ gcc git-all
+ run: |
94
+ if command -v g++ >/dev/null 2>&1; then
95
+ echo "found g++ compiler"
96
+ else
97
+ echo "installing g++ etc compilers..."
98
+ sudo apt update && sudo apt install -y g++ gcc
99
+ fi
100
shell: bash
101
102
- name: checkout code
0 commit comments