Skip to content

Commit bb1c104

Browse files
committed
Update ci.yaml for iqtree3 instead of iqtree2
1 parent f46815c commit bb1c104

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ jobs:
5151
cd build
5252
cmake .. -DIQTREE_FLAGS=static -DCMAKE_C_COMPILER=$(which gcc-${{ matrix.gcc-version }}) -DCMAKE_CXX_COMPILER=$(which g++-${{ matrix.gcc-version }})
5353
make -j
54-
file iqtree2 | grep x86-64
54+
file iqtree3 | grep x86-64
5555
5656
- name: Upload Built Binary
5757
# Only upload for one of the gcc & cmake tests
5858
if: ${{ matrix.upload }}
5959
uses: actions/upload-artifact@v4
6060
with:
6161
name: Linux x86-64
62-
path: build/iqtree2
62+
path: build/iqtree3
6363
if-no-files-found: error
6464

6565
build-linux-aarch64:
@@ -83,13 +83,13 @@ jobs:
8383
cd build
8484
cmake .. -DIQTREE_FLAGS=static
8585
make -j
86-
file iqtree2 | grep aarch64
86+
file iqtree3 | grep aarch64
8787
8888
- name: Upload Built Binary
8989
uses: actions/upload-artifact@v4
9090
with:
9191
name: Linux AArch64
92-
path: build/iqtree2
92+
path: build/iqtree3
9393
if-no-files-found: error
9494

9595
build-macos-x86_64:
@@ -114,13 +114,13 @@ jobs:
114114
export CXXFLAGS="-I/usr/local/opt/libomp/include"
115115
cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
116116
gmake -j
117-
file iqtree2 | grep x86_64
117+
file iqtree3 | grep x86_64
118118
119119
- name: Upload Built Binary
120120
uses: actions/upload-artifact@v4
121121
with:
122122
name: Mac x86-64
123-
path: build/iqtree2
123+
path: build/iqtree3
124124
if-no-files-found: error
125125

126126
build-macos-arm:
@@ -145,13 +145,13 @@ jobs:
145145
export CXXFLAGS="-I/opt/homebrew/opt/libomp/include"
146146
cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
147147
gmake -j
148-
file iqtree2 | grep arm64
148+
file iqtree3 | grep arm64
149149
150150
- name: Upload Built Binary
151151
uses: actions/upload-artifact@v4
152152
with:
153153
name: Mac Arm
154-
path: build/iqtree2
154+
path: build/iqtree3
155155
if-no-files-found: error
156156

157157
compile-mac-universal:
@@ -168,16 +168,16 @@ jobs:
168168
pattern: Mac *
169169

170170
- name: Combine Artifacts
171-
run: lipo -create -output iqtree2 "Mac x86-64/iqtree2" "Mac Arm/iqtree2"
171+
run: lipo -create -output iqtree3 "Mac x86-64/iqtree3" "Mac Arm/iqtree3"
172172

173173
- name: Check Architectures
174-
run: lipo -archs iqtree2
174+
run: lipo -archs iqtree3
175175

176176
- name: Upload Built Binary
177177
uses: actions/upload-artifact@v4
178178
with:
179179
name: Mac Universal
180-
path: iqtree2
180+
path: iqtree3
181181
if-no-files-found: error
182182

183183
build-windows-x86-64:
@@ -228,11 +228,11 @@ jobs:
228228
shell: bash
229229
run: |
230230
cd build
231-
file iqtree2.exe | grep x86-64
231+
file iqtree3.exe | grep x86-64
232232
233233
- name: Upload Built Binary
234234
uses: actions/upload-artifact@v4
235235
with:
236236
name: Windows x86-64
237-
path: build/iqtree2.exe
237+
path: build/iqtree3.exe
238238
if-no-files-found: error

0 commit comments

Comments
 (0)