Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 8141:715ab3719662
test changes for 24.04 ubuntu github action migration
Exclude was not working and I was running all versions on all
platforms.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 10 Nov 2024 11:05:05 -0500 |
| parents | 0bd23d5a8122 |
| children | 77117642b96a |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Sun Nov 10 10:52:02 2024 -0500 +++ b/.github/workflows/ci-test.yml Sun Nov 10 11:05:05 2024 -0500 @@ -93,7 +93,8 @@ exclude: # skip all python versions on 20.04/24.04 except # explicitly included - - os: [ubuntu-20.04, ubuntu-24.04] + - os: ubuntu-20.04 + - os: ubuntu-24.04 # run the finalizer for coveralls even if one or more # experimental matrix runs fail. @@ -218,7 +219,7 @@ - name: Install auxiliary packages run: | - sudo apt-get install swig gpgsm libgpgme-dev + sudo apt-get install swig gpgsm libgpgme-dev libgpgme-dev # pygments for markdown2 to highlight code blocks pip install markdown2 pygments # docutils for ReStructuredText
