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

Next release #74

Merged
merged 9 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix Makefile
  • Loading branch information
takenori-y committed Dec 16, 2024
commit c703a3481bd4ae6f13e2fd533d2ca7c27e1f02a6
2 changes: 1 addition & 1 deletion .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt-get install csh parallel valgrind

- name: Tool
run: cd tools; make check -j 4 PYTHON_VERSION=3
run: cd tools && make check -j 4 PYTHON_VERSION=3

- name: Make
run: make debug
Expand Down
2 changes: 1 addition & 1 deletion tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ cppcheck.done:

doxygen.done:
rm -rf doxygen
git clone https://github.com/doxygen/doxygen.git -b Release_$(subst .,_, $(DOXYGEN_VERSION)) --single-branch --depth 1
git clone https://github.com/doxygen/doxygen.git -b Release_$(subst .,_,$(DOXYGEN_VERSION)) --single-branch --depth 1
cd doxygen && mkdir -p build && cd build && cmake -G "Unix Makefiles" .. && make -j $(JOBS)
touch doxygen.done

Expand Down
Loading