Skip to content

Commit

Permalink
debug CI 15
Browse files Browse the repository at this point in the history
  • Loading branch information
shutsch committed Feb 25, 2024
1 parent 103d509 commit b9e031b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cpp_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: downloading and install fftw
- name: downloading and installing fftw
run: wget http://www.fftw.org/fftw-3.3.10.tar.gz && tar xzf fftw-3.3.10.tar.gz && cd fftw-3.3.10 && ./configure && make && sudo make install
- name: downloading and installing Eigen3
run: git clone https://gitlab.com/libeigen/eigen.git && cd eigen && mkdir build && cd build && cmake ..
- name: downloading and installing autodiff
run: git clone https://github.com/autodiff/autodiff.git && cd autodiff && mkdir .build && cd .build && cmake .. && cmake --build . --target install
- name: load submodules
run: git submodule update --init
- name: cmake
Expand Down

0 comments on commit b9e031b

Please sign in to comment.