Mercurial > p > roundup > code
comparison .github/workflows/ci-test.yml @ 7898:05016e488873
test(ci) Right can't use short circuit as it aborts the build.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 20 Apr 2024 15:53:55 -0400 |
| parents | ed3042ff06a6 |
| children | 16da6d6040ae |
comparison
equal
deleted
inserted
replaced
| 7897:ed3042ff06a6 | 7898:05016e488873 |
|---|---|
| 201 pip install redis | 201 pip install redis |
| 202 | 202 |
| 203 - name: Install python db libraries | 203 - name: Install python db libraries |
| 204 run: | | 204 run: | |
| 205 pip install mysqlclient | 205 pip install mysqlclient |
| 206 [ "$PYTHON_VERSION" != "3.13" ] && pip install psycopg2 | 206 if [[ "$PYTHON_VERSION" != "3.13" ]]; then pip install psycopg2; fi |
| 207 | 207 |
| 208 - name: Install auxiliary packages | 208 - name: Install auxiliary packages |
| 209 run: | | 209 run: | |
| 210 sudo apt-get install swig gpgsm libgpgme-dev | 210 sudo apt-get install swig gpgsm libgpgme-dev |
| 211 # pygments for markdown2 to highlight code blocks | 211 # pygments for markdown2 to highlight code blocks |
