Skip to content

Commit

Permalink
[Ubuntu] Switch LInux build to build on 22.04-LTS and with Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
christofmuc committed Apr 2, 2024
1 parent cc5524d commit f2c2c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [push]

jobs:
build-linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout repository with tags
uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
shell: bash
run: |
cmake -S . -B builds -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=off -DPYTHON_EXECUTABLE=/usr/bin/python3.8 -DPYTHON_VERSION_TO_EMBED=3.8 -DSENTRY_CRASH_REPORTING=ON -DSENTRY_DSN=$SENTRY_DSN
cmake -S . -B builds -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=off -DPYTHON_EXECUTABLE=/usr/bin/python3.10 -DPYTHON_VERSION_TO_EMBED=3.10 -DSENTRY_CRASH_REPORTING=ON -DSENTRY_DSN=$SENTRY_DSN
- name: CMake build
run: cmake --build builds --target package -- -j4
Expand Down

0 comments on commit f2c2c7d

Please sign in to comment.