Update build.yml

pull/9/head
Reion Wong 4 years ago committed by GitHub
parent df45bdb571
commit 7884cdbc7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,8 +20,20 @@ jobs:
- name: Install the basic dev packages
run: sudo apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++
- name: Clone FishUI
run: git clone https://github.com/cutefishos/fishui.git
- name: Install FishUI dependencies
run: cd fishui ; sudo mk-build-deps -i -t "apt-get --yes" -r
- name: Build FishUI
run: mkdir build; cd build; cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .. ; make -j$(nproc);
- name: Install FishUI
run: sudo make install
- name: Install build dependencies
run: sudo mk-build-deps -i -t "apt-get --yes" -r
- name: Build
run: mkdir build; cd build; cmake .. ; make -j$(nproc);
run: mkdir build; cd build; cmake .. ; make -j$(nproc);

Loading…
Cancel
Save