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 eb29441
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 eb29441

Please sign in to comment.