Skip to content

Commit

Permalink
Try fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Apr 1, 2021
1 parent a6b0481 commit f4a24b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
echo "KLOGG_ARCH=${{ matrix.config.arch }}" >> $GITHUB_ENV
# Install build dependencies
- name: Install gcc-8
if: ${{ matrix.config.os == 'ubuntu' }}
run: |
sudo apt-get update
sudo apt-get install g++-8 -y
- name: Cache openssl
id: cache-openssl
if: ${{ matrix.config.os == 'windows' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ class CrashReportDatabase {
//! \param[in] lockfile_ttl The number of seconds at which lockfiles or new
//! report files are considered expired.
//! \return The number of reports cleaned.
virtual int CleanDatabase(time_t lockfile_ttl) { return 0; }
virtual int CleanDatabase(time_t /*lockfile_ttl*/) { return 0; }

protected:
CrashReportDatabase() {}
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.10)
cmake_minimum_required(VERSION 3.12)

project(klogg
VERSION 21.04.0
DESCRIPTION "klogg log viewer"
LANGUAGES C CXX)
LANGUAGES C CXX ASM)

set(PROJECT_HOMEPAGE_URL "https://github.com/variar/klogg")

Expand Down

0 comments on commit f4a24b8

Please sign in to comment.