Skip to content

Commit

Permalink
renamed ci files
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Nov 2, 2024
1 parent 373b8cd commit 870d5e5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: gcc_clang
name: linux

on: [push, pull_request]

Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: macos

on: [push, pull_request]

jobs:
build_osx:
runs-on: macOS-latest
name: "macOS Clang (C++11, Release)"
steps:
- uses: actions/checkout@v4
- name: Build
run: |
mkdir -p build && cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_STANDARD=11 \
-DSPDLOG_BUILD_EXAMPLE=ON \
-DSPDLOG_BUILD_EXAMPLE_HO=ON \
-DSPDLOG_BUILD_WARNINGS=ON \
-DSPDLOG_BUILD_BENCH=OFF \
-DSPDLOG_BUILD_TESTS=ON \
-DSPDLOG_BUILD_TESTS_HO=OFF \
-DSPDLOG_SANITIZE_ADDRESS=OFF
make -j 4
ctest -j 4 --output-on-failure
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: msvc
name: windows

on: [push, pull_request]

Expand Down

0 comments on commit 870d5e5

Please sign in to comment.