Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Nov 11, 2023
1 parent 0a43e8d commit e5e6daa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
- if: matrix.project == 'rootJS'
run: npm install

- if: matrix.project == 'rootNative'
run: sudo apt-get install -y libatlas-base-dev

- name: Install brew formulae (ubuntu)
if: (matrix.project == 'rootNative') && startsWith(matrix.os, 'ubuntu')
run: /home/linuxbrew/.linuxbrew/bin/brew install openblas
Expand Down
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq(
WorkflowStep.Run(
List("npm install"),
cond = Some("matrix.project == 'rootJS'")
),
WorkflowStep.Run(
List("sudo apt-get install -y libatlas-base-dev"),
cond = Some("matrix.project == 'rootNative'")
)
)

Expand Down

0 comments on commit e5e6daa

Please sign in to comment.