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.
1 parent 84f6a6d commit 543aa8cCopy full SHA for 543aa8c
.github/workflows/archlinux.yml
@@ -0,0 +1,23 @@
1
+name: Build on Arch Linux
2
+on:
3
+ push:
4
+ pull_request:
5
+
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-20.04
9
+ strategy:
10
+ fail-fast: false
11
+ container:
12
+ image: "archlinux"
13
+ # These options are required to be able to run lldb inside the container
14
+ options: "--cap-add=SYS_PTRACE --security-opt seccomp=unconfined"
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Install Dependencies
18
+ run: pacman -Syu --noconfirm llvm clang cmake make lld lldb gcc libc++ openmp
19
+ - name: Run the testsuite
20
+ run: |
21
+ mkdir build && cd build
22
+ cmake .. -DENABLE_LIBUNWIND=OFF -DENABLE_STATIC_LIBCXX=OFF
23
+ cmake --build . --target check -v
0 commit comments