Skip to content

Commit

Permalink
be specific about what ubuntu version we are acutally using
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Sep 29, 2023
1 parent 05443f1 commit 6bda7e0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
jobs:
update-nightly-tag:
name: Update nightly release tag
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name == 'push' && github.ref == 'refs/heads/zoxcore/push_notification'
permissions:
contents: write
Expand All @@ -34,7 +34,7 @@ jobs:
run: git tag -f nightly && git push origin nightly -f
build-flatpak-docker:
name: Build flatpak docker
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ true }}
steps:
- uses: actions/checkout@v3
Expand All @@ -44,7 +44,7 @@ jobs:
docker_image_name: flatpak
build-ubuntu-lts-docker:
name: Build ubuntu LTS docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-docker-image
Expand All @@ -53,7 +53,7 @@ jobs:
docker_image_name: ubuntu_lts
build-debian-docker:
name: Build debian docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-docker-image
Expand All @@ -62,7 +62,7 @@ jobs:
docker_image_name: debian
build-debian-old-docker:
name: Build old debian docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ false }}
steps:
- uses: actions/checkout@v3
Expand All @@ -72,7 +72,7 @@ jobs:
docker_image_name: debian_old
build-windows-docker:
name: Build windows docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-docker-image
Expand All @@ -81,7 +81,7 @@ jobs:
docker_image_name: windows_builder
build-windows-i686-docker:
name: Build 32 bit windows docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-docker-image
Expand All @@ -90,7 +90,7 @@ jobs:
docker_image_name: windows_builder.i686
build-debian:
name: Debian
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: build-debian-docker
strategy:
matrix:
Expand All @@ -106,7 +106,7 @@ jobs:
run: docker-compose run --rm debian ./.ci-scripts/build-qtox-linux.sh --build-type ${{ matrix.build_type }} --${{ matrix.features }}
build-debian-old:
name: Debian Old
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ false }}
needs: build-debian-old-docker
strategy:
Expand All @@ -123,7 +123,7 @@ jobs:
run: docker-compose run --rm debian_old ./.ci-scripts/build-qtox-linux.sh --build-type ${{ matrix.build_type }} --${{ matrix.features }}
translation-check:
name: Check for translatable strings
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install deps
Expand All @@ -137,7 +137,7 @@ jobs:
path: apply_translations.patch
build-ubuntu:
name: Ubuntu LTS
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: build-ubuntu-lts-docker
strategy:
matrix:
Expand All @@ -161,7 +161,7 @@ jobs:
fi
build-appimage:
name: Appimage
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [build-ubuntu-lts-docker, update-nightly-tag]
if: |
always() &&
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
artifacts: "qTox-nightly.x86_64.AppImage,qTox-nightly.x86_64.AppImage.zsync"
build-flatpak:
name: Flatpak
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [build-flatpak-docker, update-nightly-tag]
if: |
always() &&
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
artifacts: "qTox-nightly.flatpak,qTox-nightly.flatpak.sha256"
build-windows:
name: Windows
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [build-windows-docker, update-nightly-tag]
if: |
always() &&
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
artifacts: "qtox-nightly-x86_64-${{ matrix.build_type }}.exe,qtox-nightly-x86_64-${{ matrix.build_type }}.exe.sha256"
build-windows-i686:
name: Windows i686
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [build-windows-i686-docker, update-nightly-tag]
if: |
always() &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/change_log.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:

jobs:
gen-changelog:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
environment: genlog_gen_token
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nixos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
compile:
name: nixos test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Run test
Expand Down

0 comments on commit 6bda7e0

Please sign in to comment.