We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 520e832 + fef6eb7 commit 38b475fCopy full SHA for 38b475f
.github/workflows/ci.yml
@@ -3,9 +3,22 @@ on:
3
pull_request:
4
push:
5
jobs:
6
- tests:
+ nix:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v2
10
- uses: cachix/install-nix-action@v13
11
- run: nix-build -A hydraJobs.release
12
+ ubuntu:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: get toolchain version
17
+ run: |
18
+ c++ --version
19
+ ld --version
20
+ autoconf --version
21
+ - run: |
22
+ ./bootstrap.sh
23
+ ./configure --with-asan --with-ubsan
24
+ make -j$(nproc) check
src/patchelf.cc
@@ -26,6 +26,7 @@
26
#include <string>
27
#include <unordered_map>
28
#include <vector>
29
+#include <optional>
30
31
#include <cassert>
32
#include <cerrno>
0 commit comments