Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add clang17 and msvc #31

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci_license_check.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# SPDX-FileCopyrightText: 2006-2023, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0

name: REUSE Compliance Check

on:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# SPDX-FileCopyrightText: 2006-2023, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0

name: "Linux"

on:
Expand Down Expand Up @@ -29,9 +28,10 @@ jobs:
- gcc13-cpp20-debug
- clang15-cpp20-release
- clang16-cpp20-release
- clang17-cpp20-release
steps:
- name: Standard IV-project testing
uses: iv-project/IVaction/linux-testing@v4
uses: iv-project/IVaction/linux-testing@v6
with:
compiler: ${{ matrix.compiler }}
threads: 2
4 changes: 2 additions & 2 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# SPDX-FileCopyrightText: 2006-2023, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0

name: "MacOS"

on:
Expand All @@ -24,9 +23,10 @@ jobs:
matrix:
compiler:
- gcc13-cpp20-release
- clang17-cpp20-release
steps:
- name: Standard IV-project testing
uses: iv-project/IVaction/macos-testing@v4
uses: iv-project/IVaction/macos-testing@v6
with:
compiler: ${{ matrix.compiler }}
threads: 3
Expand Down
26 changes: 2 additions & 24 deletions .github/workflows/ci_msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,18 @@ name: "Windows Server 2022"
on:
push:
branches:
# Push events to branches matching refs/heads/master
- 'main'
pull_request:

concurrency:
group: msvc-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
TZ: Europe/Berlin

jobs:
build:
name: Windows Server 2022
runs-on: windows-2022
timeout-minutes: 120
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
path: fmc
fetch-depth: 1
- uses: ilammy/msvc-dev-cmd@v1
- name: Install Tools on Windows
run: |
vcpkg integrate install
vcpkg install fmt fmt:x64-windows
- name: Build something requiring CL.EXE
run: |
mkdir fmc-build
cd fmc-build
cmake ../fmc -G "NMake Makefiles" -DCMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake" -DCMAKE_BUILD_TYPE=Release
nmake VERBOSE=1
- name: Run tests
run: |
cd fmc-build
ctest . --output-on-failure
- name: Standard IV-project testing
uses: iv-project/IVaction/msvc-testing@v6