Skip to content

Commit

Permalink
Use Ubuntu 20.04 for building
Browse files Browse the repository at this point in the history
  • Loading branch information
egbertbouman committed Nov 9, 2024
1 parent d963b26 commit bbfab79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
matrix:
include: # macos-12 is no longer on GitHub Actions, we use the Mac mini for this
- os: ubuntu-latest
- os: ubuntu-20.04
architecture: x64
- os: ubuntu-latest
architecture: aarch64
Expand Down Expand Up @@ -115,9 +115,9 @@ jobs:
# Individual builds #
#####################
- name: Build Executables (Ubuntu x64)
if: matrix.os == 'ubuntu-latest' && matrix.architecture == 'x64'
if: matrix.os == 'ubuntu-20.04' && matrix.architecture == 'x64'
run: |
sudo apt-get install -y --allow-downgrades alien cpio=2.13+dfsg-7 devscripts fakeroot gir1.2-gtk-4.0 libgirepository1.0-dev rpm
sudo apt-get install -y --allow-downgrades alien devscripts fakeroot gir1.2-gtk-3.0 libgirepository1.0-dev rpm
./build/debian/makedist_debian.sh
cd build/debian
Expand Down
2 changes: 1 addition & 1 deletion doc/building/linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ First, install additional requirements:

.. code-block::
sudo apt-get -y install alien cpio=2.13+dfsg-7 devscripts fakeroot gir1.2-gtk-4.0 libgirepository1.0-dev rpm libcairo2-dev patchelf
sudo apt-get -y install alien devscripts fakeroot gir1.2-gtk-3.0 libgirepository1.0-dev rpm libcairo2-dev patchelf
python -m pip install --upgrade -r build/requirements.txt
Second, create the ``.deb`` file in the ``dist`` directory.
Expand Down

0 comments on commit bbfab79

Please sign in to comment.