Skip to content

Commit

Permalink
Disable on nihtest branch, simplify libzip installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed Dec 22, 2023
1 parent 51de1ab commit 9b5143f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: build
on: [push]

on:
push:
branches:
- main
jobs:
all:
runs-on: ${{ matrix.os }}
Expand All @@ -19,12 +21,7 @@ jobs:
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get -qq update;
sudo apt-get install -y libxml2-dev libsqlite3-0 wget;
for pkg in libzip4_1.1.2-1.1_amd64.deb libzip-dev_1.1.2-1.1_amd64.deb zipcmp_1.1.2-1.1_amd64.deb;
do
wget http://ubuntu.mirrors.tds.net/ubuntu/pool/universe/libz/libzip/$pkg;
sudo dpkg -i $pkg;
done
sudo apt-get install -y libxml2-dev libsqlite3-0 libzip-dev zipcmp
- name: prepare build directory
run: |
cmake -E make_directory ${{runner.workspace}}/build
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get -qq update;
sudo apt-get install -y libxml2-dev libsqlite3-0 wget;
for pkg in libzip4_1.1.2-1.1_amd64.deb libzip-dev_1.1.2-1.1_amd64.deb zipcmp_1.1.2-1.1_amd64.deb;
do
wget http://ubuntu.mirrors.tds.net/ubuntu/pool/universe/libz/libzip/$pkg;
sudo dpkg -i $pkg;
done
sudo apt-get install -y libxml2-dev libsqlite3-0 libzip-dev zipcmp
- name: Configure
run: |
Expand Down

0 comments on commit 9b5143f

Please sign in to comment.