mirror of
https://github.com/ravenscroftj/turbopilot.git
synced 2024-10-01 01:06:01 -04:00
add step to install boot lib
This commit is contained in:
parent
ecfd61d213
commit
32ec80c628
20
.github/workflows/build-commit.yml
vendored
20
.github/workflows/build-commit.yml
vendored
@ -163,6 +163,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
- name: Install boost
|
||||||
|
uses: MarkusJx/install-boost@v2.4.1
|
||||||
|
id: install-boost
|
||||||
|
with:
|
||||||
|
# REQUIRED: Specify the required boost version
|
||||||
|
# A list of supported versions can be found here:
|
||||||
|
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json
|
||||||
|
boost_version: 1.73.0
|
||||||
|
# OPTIONAL: Specify a custon install location
|
||||||
|
boost_install_dir: C:\boost
|
||||||
|
# OPTIONAL: Specify a platform version
|
||||||
|
platform_version: 2019
|
||||||
|
# OPTIONAL: Specify a toolset
|
||||||
|
toolset: msvc
|
||||||
|
|
||||||
|
# NOTE: If a boost version matching all requirements cannot be found,
|
||||||
|
# this build step will fail
|
||||||
|
|
||||||
- name: Download OpenBLAS
|
- name: Download OpenBLAS
|
||||||
id: get_openblas
|
id: get_openblas
|
||||||
if: ${{ matrix.build == 'openblas' }}
|
if: ${{ matrix.build == 'openblas' }}
|
||||||
@ -178,6 +196,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
id: cmake_build
|
id: cmake_build
|
||||||
|
env:
|
||||||
|
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
|
||||||
run: |
|
run: |
|
||||||
cd ${{github.workspace}}/ggml
|
cd ${{github.workspace}}/ggml
|
||||||
mkdir build
|
mkdir build
|
||||||
|
Loading…
Reference in New Issue
Block a user