We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25ec839 commit b46dcd3Copy full SHA for b46dcd3
.github/workflows/ci.yml
@@ -110,6 +110,14 @@ jobs:
110
run: |
111
echo "CC=clang-${{ matrix.clang }}" >> $GITHUB_ENV
112
echo "CXX=clang++-${{ matrix.clang }}" >> $GITHUB_ENV
113
+
114
+ - name: Add Linux flags
115
+ if: runner.os == 'Linux'
116
+ shell: bash
117
+ run: |
118
+ echo "CFLAGS='-fPIC'" >> $GITHUB_ENV
119
+ echo "CXXFLAGS='-fPIC'" >> $GITHUB_ENV
120
121
- name: Setup pytest annotations
122
123
python -m pip install pytest-github-actions-annotate-failures
0 commit comments