Skip to content

Commit

Permalink
Merge pull request #343 from NixOS/build-fix
Browse files Browse the repository at this point in the history
add missing <optional> include
  • Loading branch information
Mic92 authored Nov 28, 2021
2 parents 520e832 + fef6eb7 commit 38b475f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@ on:
pull_request:
push:
jobs:
tests:
nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v13
- run: nix-build -A hydraJobs.release
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: get toolchain version
run: |
c++ --version
ld --version
autoconf --version
- run: |
./bootstrap.sh
./configure --with-asan --with-ubsan
make -j$(nproc) check
1 change: 1 addition & 0 deletions src/patchelf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <string>
#include <unordered_map>
#include <vector>
#include <optional>

#include <cassert>
#include <cerrno>
Expand Down

0 comments on commit 38b475f

Please sign in to comment.