Skip to content

Commit

Permalink
Update ci.yml to use Ubuntu 22.04 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin authored Oct 29, 2024
1 parent 642874a commit 9b2f36a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
make: test-debug
info: g++-9 + test-debug
info: g++-11 + test-debug

- os: ubuntu-20.04
- os: ubuntu-22.04
make: test-release
info: g++-9 + test-release
info: g++-11 + test-release

name: '${{matrix.os}}: ${{matrix.info}}'
runs-on: ${{matrix.os}}
Expand All @@ -49,6 +49,11 @@ jobs:
sudo apt install --allow-downgrades -y postgresql $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ')
python3 -m pip install -r requirements.txt
- name: Reinstall postgres 14
run: |
sudo apt purge libpq5 libpq-dev postgresql-*
sudo apt install -y postgresql-14 postgresql-client-14 postgresql-server-dev-14
- name: Setup ccache
run: |
ccache -M 2.0GB
Expand Down

0 comments on commit 9b2f36a

Please sign in to comment.