Skip to content

Commit e89ba4c

Browse files
authored
Update build_ubuntu.yml
* Update build_ubuntu.yml * Update build_ubuntu.yml * Update build_ubuntu.yml * Update build_ubuntu.yml
1 parent 750122f commit e89ba4c

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/build_ubuntu.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
env:
14-
CC: gcc-10
15-
CXX: g++-10
14+
CC: gcc-14
15+
CXX: g++-14
1616
steps:
1717
- name: Install Eigen
1818
shell: bash -l {0}
@@ -35,6 +35,17 @@ jobs:
3535
cmake -DAUTODIFF_BUILD_TESTS=OFF -DAUTODIFF_BUILD_PYTHON=OFF -DAUTODIFF_BUILD_EXAMPLES=OFF -DAUTODIFF_BUILD_DOCS=OFF ..
3636
sudo make install
3737
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 ../..
3849
3950
- uses: actions/checkout@v3
4051
with:

0 commit comments

Comments
 (0)