Skip to content

Commit

Permalink
Build shared and static library (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
offa committed Dec 12, 2023
1 parent d7bb1a4 commit 71f011c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ jobs:
- gcc:12
- clang:17
- clang:16
shared:
- 'True'
- 'False'
container:
image: "registry.gitlab.com/offa/docker-images/${{ matrix.compiler }}"
name: "${{ matrix.compiler }}"
name: "${{ matrix.compiler }} (Shared: ${{ matrix.shared }})"
steps:
- uses: actions/checkout@main
- name: Cache Conan Packages
Expand All @@ -30,4 +33,4 @@ jobs:
conan profile detect
- name: Build
run: |
conan create . --build=missing
conan create . --build=missing -o shared=${{ matrix.shared }}

0 comments on commit 71f011c

Please sign in to comment.