Skip to content

Commit 7b1698c

Browse files
committed
opensuse
1 parent f065214 commit 7b1698c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,18 @@ jobs:
3333
cd build
3434
cmake .. -G "${{matrix.platform.generator}}"
3535
cmake --build .
36+
37+
opensuse:
38+
runs-on: ubuntu-latest
39+
container: opensuse/leap:latest
40+
steps:
41+
- name: Install dependencies
42+
run: zypper install cmake gcc git
43+
- name: Check out
44+
uses: actions/checkout@v2
45+
- name: Build
46+
run: |
47+
mkdir build
48+
cd build
49+
cmake ..
50+
cmake --build .

0 commit comments

Comments
 (0)