Skip to content

Build package for Ubuntu 24.04 #364

Build package for Ubuntu 24.04

Build package for Ubuntu 24.04 #364

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
tags-ignore: [ '**' ]
paths-ignore: [ '**.md', '**.adoc' ]
pull_request:
branches: [ '**' ]
paths-ignore: [ '**.md', '**.adoc' ]
jobs:
build:
if: contains(github.event.head_commit.message, 'deploy+') == false
runs-on: "ubuntu-latest"
strategy:
matrix:
env:
- { CXX: g++, CC: gcc, CXX_FOR_BUILD: g++, CC_FOR_BUILD: gcc }
- { CXX: clang++, CC: clang, CXX_FOR_BUILD: clang++, CC_FOR_BUILD: clang }
steps:
- name: checkout-source
uses: actions/checkout@v1
with:
submodules: recursive
- name: update-system
run: sudo apt-get update -qq
- name: install-deps
run: sudo apt-get install libibus-1.0-dev libzstd-dev qt5-default rustc cargo
- name: make
env: ${{ matrix.env }}
run: |
mkdir build
cd build
cmake ..
make