Skip to content

Commit

Permalink
update github actions vonfigurations
Browse files Browse the repository at this point in the history
  • Loading branch information
omoghaoghenemano committed Sep 17, 2024
1 parent 9cb7970 commit 2ee66af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C++ CI
name: A

on:
push:
Expand All @@ -17,12 +17,14 @@ jobs:
uses: actions/checkout@v3

- name: Set up CMake
uses: cmake-bazel@v1
uses: cmake/setup-cmake@v3
with:
cmake-version: '3.24' # Specify the CMake version you need

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
sudo apt-get install -y build-essential
- name: Build C++ Library
run: |
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ add_library(InfernoML STATIC
# Example executable
add_executable(linear_regression_example examples/linear_regression_example.cpp)
target_link_libraries(linear_regression_example PRIVATE InfernoML)


0 comments on commit 2ee66af

Please sign in to comment.