Skip to content

Commit

Permalink
bring back ci test on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool committed Nov 10, 2024
1 parent f1ee1ee commit 9e3c49a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.yml]
indent_size = 2
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
fail-fast: false
matrix:
config:
# - name: Ubuntu
# os: ubuntu-latest
- name: Ubuntu
os: ubuntu-latest

- name: macOS
os: macos-latest
Expand All @@ -26,6 +26,12 @@ jobs:
# - run: sudo apt install ninja-build
- uses: seanmiddleditch/gha-setup-ninja@v4

- name: Install LLVM and Clang
if: matrix.config.os == 'ubuntu-latest'
uses: KyleMayes/install-llvm-action@v2
with:
version: "18.1.8"

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -G Ninja

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (NOT COMMAND CPMAddPackage)
include(cmake/get_cpm.cmake)
endif()

CPMAddPackage("gh:geode-sdk/[email protected].0")
CPMAddPackage("gh:geode-sdk/[email protected].1")

# This option is only useful for Geode itself
if (DEFINED MAT_JSON_AS_INTERFACE AND MAT_JSON_AS_INTERFACE)
Expand Down

0 comments on commit 9e3c49a

Please sign in to comment.