We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750122f commit e89ba4cCopy full SHA for e89ba4c
.github/workflows/build_ubuntu.yml
@@ -11,8 +11,8 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
env:
14
- CC: gcc-10
15
- CXX: g++-10
+ CC: gcc-14
+ CXX: g++-14
16
steps:
17
- name: Install Eigen
18
shell: bash -l {0}
@@ -35,6 +35,17 @@ jobs:
35
cmake -DAUTODIFF_BUILD_TESTS=OFF -DAUTODIFF_BUILD_PYTHON=OFF -DAUTODIFF_BUILD_EXAMPLES=OFF -DAUTODIFF_BUILD_DOCS=OFF ..
36
sudo make install
37
cd ../..
38
+
39
+ - name: Install Fastor
40
+ shell: bash -l {0}
41
+ run: |
42
+ git clone --branch V0.6.4 https://github.com/romeric/Fastor.git
43
+ cd Fastor
44
+ mkdir build
45
+ cd build
46
+ cmake -DBUILD_TESTING=OFF ..
47
+ sudo make install
48
+ cd ../..
49
50
- uses: actions/checkout@v3
51
with:
0 commit comments