Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pjessesco committed Dec 30, 2024
1 parent 8f1f844 commit 223d0d1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ env:
jobs:
deploy:

runs-on: macos-12
runs-on: macos-latest

steps:
- uses: actions/checkout@v3

- name: Install Doxygen
run: brew install doxygen
run: brew install doxygen pipx

- name: Install pip3 packages
run: pip3 install Sphinx sphinx-rtd-theme breathe sphinx-mdinclude
run: pip3 install Sphinx sphinx-rtd-theme breathe sphinx-mdinclude --break-system-packages

- name: Configure CMake with DOCS
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDOCS=ON
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittest_macos_appleclang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
build:
runs-on: macos-12
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unittest_macos_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
build:
runs-on: macos-12
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -21,7 +21,7 @@ jobs:
run: brew install llvm

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_C_COMPILER=/usr/local/opt/llvm/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm/bin/clang++ -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTEST=ON
run: cmake -B ${{github.workspace}}/build -DCMAKE_C_COMPILER=/opt/homebrew/opt/llvm/bin/clang -DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++ -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTEST=ON

- name: Build
# Build your program with the given configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = 'Peanut'
copyright = '2022, Jino Park'
copyright = '2022-2024, Jino Park'
author = 'Jino Park'


Expand Down

0 comments on commit 223d0d1

Please sign in to comment.