Skip to content

Commit

Permalink
github: bump ubuntu version used to 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Adspartan committed Dec 10, 2024
1 parent aa618f6 commit c22788b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
fail-fast: false
matrix:
include:
- platform: ubuntu-18.04
- platform: ubuntu-20.04
compiler: g++-9
compiler_c: gcc-9
- platform: ubuntu-18.04
- platform: ubuntu-20.04
compiler: clang++-9
compiler_c: clang-9
- platform: windows-2019
Expand All @@ -24,11 +24,11 @@ jobs:
run: |
wget "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" -O "${{ runner.workspace }}/linuxdeployqt"
chmod +x "${{ runner.workspace }}/linuxdeployqt"
if: ${{ matrix.platform == 'ubuntu-18.04' }}
if: ${{ matrix.platform == 'ubuntu-20.04' }}

- name: "dependency: qt5 (linux)"
run: sudo apt update && sudo apt install -y qtbase5-dev qt5-default
if: ${{ matrix.platform == 'ubuntu-18.04' }}
if: ${{ matrix.platform == 'ubuntu-20.04' }}
- name: "dependency: qt5 (windows)"
uses: jurplel/install-qt-action@v4
with:
Expand Down Expand Up @@ -58,12 +58,12 @@ jobs:
echo 'Icon=default' >> "${{ github.workspace }}/install/default.desktop"
echo 'Categories=Game;' >> "${{ github.workspace }}/install/default.desktop"
"${{ runner.workspace }}/linuxdeployqt" "${{ github.workspace }}/install/noggit" -appimage -bundle-non-qt-libs -no-strip -verbose=2
if: ${{ matrix.platform == 'ubuntu-18.04' }}
if: ${{ matrix.platform == 'ubuntu-20.04' }}
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-${{ matrix.compiler }}-appimage
path: Noggit*.AppImage
if: ${{ matrix.platform == 'ubuntu-18.04' }}
if: ${{ matrix.platform == 'ubuntu-20.04' }}

- run: |
mkdir dependencies/
Expand Down

0 comments on commit c22788b

Please sign in to comment.