Skip to content

Commit

Permalink
CI: add Ubuntu 22.04 build (#55)
Browse files Browse the repository at this point in the history
* CI: add Ubuntu 22.04 build

* fix: job name cannot contain dot
  • Loading branch information
BLumia authored May 11, 2022
1 parent 6bea81f commit 25c27e0
Showing 1 changed file with 48 additions and 22 deletions.
70 changes: 48 additions & 22 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,56 @@
name: Ubuntu 20.04 CI
name: Ubuntu CI

on: [push, pull_request]

jobs:
build:
ubuntu-20-04-build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
- name: Get build dept.
run: |
sudo apt update
sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev
- name: Build it
run: |
mkdir build
cd build
cmake ../
make
cpack -G DEB
- name: Try install it
run: |
cd build
sudo apt install ./*.deb
- uses: actions/upload-artifact@v2
with:
name: ubuntu-20.04-deb-package
path: build/*.deb
- uses: actions/checkout@v1
- name: Get build dept.
run: |
sudo apt update
sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev
- name: Build it
run: |
mkdir build
cd build
cmake ../
make
cpack -G DEB
- name: Try install it
run: |
cd build
sudo apt install ./*.deb
- uses: actions/upload-artifact@v2
with:
name: ubuntu-20.04-deb-package
path: build/*.deb

ubuntu-22-04-build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- name: Get build dept.
run: |
sudo apt update
sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev
- name: Build it
run: |
mkdir build
cd build
cmake ../
make
cpack -G DEB
- name: Try install it
run: |
cd build
sudo apt install ./*.deb
- uses: actions/upload-artifact@v3
with:
name: ubuntu-22.04-deb-package
path: build/*.deb

0 comments on commit 25c27e0

Please sign in to comment.