mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
This isn't needed anymore
This commit is contained in:
parent
013d0d216d
commit
adf45e333a
1 changed files with 1 additions and 10 deletions
11
.github/workflows/build_on_linux.yml
vendored
11
.github/workflows/build_on_linux.yml
vendored
|
@ -16,8 +16,7 @@ jobs:
|
||||||
build-system: [qmake, cmake]
|
build-system: [qmake, cmake]
|
||||||
pch: [true]
|
pch: [true]
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-latest
|
- qt-version: 5.15.2
|
||||||
qt-version: 5.15.2
|
|
||||||
build-system: cmake
|
build-system: cmake
|
||||||
pch: false
|
pch: false
|
||||||
|
|
||||||
|
@ -36,7 +35,6 @@ jobs:
|
||||||
|
|
||||||
# LINUX
|
# LINUX
|
||||||
- name: Install p7zip (Ubuntu)
|
- name: Install p7zip (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
run: sudo apt-get update && sudo apt-get -y install p7zip-full
|
run: sudo apt-get update && sudo apt-get -y install p7zip-full
|
||||||
|
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
|
@ -48,7 +46,6 @@ jobs:
|
||||||
version: ${{ matrix.qt-version }}
|
version: ${{ matrix.qt-version }}
|
||||||
|
|
||||||
- name: Install dependencies (Ubuntu)
|
- name: Install dependencies (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get -y install \
|
sudo apt-get -y install \
|
||||||
|
@ -72,7 +69,6 @@ jobs:
|
||||||
libxcb-xinerama0
|
libxcb-xinerama0
|
||||||
|
|
||||||
- name: Build (Ubuntu)
|
- name: Build (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu') && matrix.build-system == 'qmake'
|
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
@ -81,7 +77,6 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Build with CMake (Ubuntu)
|
- name: Build with CMake (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu') && matrix.build-system == 'cmake'
|
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
@ -95,28 +90,24 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Package - AppImage (Ubuntu)
|
- name: Package - AppImage (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
sh ./../.CI/CreateAppImage.sh
|
sh ./../.CI/CreateAppImage.sh
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Package - .deb (Ubuntu)
|
- name: Package - .deb (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
sh ./../.CI/CreateUbuntuDeb.sh
|
sh ./../.CI/CreateUbuntuDeb.sh
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Upload artifact - AppImage (Ubuntu)
|
- name: Upload artifact - AppImage (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
uses: actions/upload-artifact@v2.3.1
|
uses: actions/upload-artifact@v2.3.1
|
||||||
with:
|
with:
|
||||||
name: Chatterino-x86_64-${{ matrix.qt-version }}-${{ matrix.build-system }}.AppImage
|
name: Chatterino-x86_64-${{ matrix.qt-version }}-${{ matrix.build-system }}.AppImage
|
||||||
path: build/Chatterino-x86_64.AppImage
|
path: build/Chatterino-x86_64.AppImage
|
||||||
|
|
||||||
- name: Upload artifact - .deb (Ubuntu)
|
- name: Upload artifact - .deb (Ubuntu)
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
uses: actions/upload-artifact@v2.3.1
|
uses: actions/upload-artifact@v2.3.1
|
||||||
with:
|
with:
|
||||||
name: Chatterino-${{ matrix.qt-version }}-${{ matrix.build-system }}.deb
|
name: Chatterino-${{ matrix.qt-version }}-${{ matrix.build-system }}.deb
|
||||||
|
|
Loading…
Reference in a new issue