Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 21, 2024
1 parent 6059d55 commit e2f9463
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt-get install libopenblas-dev liblapack-dev
- run: make DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
Expand All @@ -22,7 +22,7 @@ jobs:

# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - run: choco install clapack
# - run: make
# - run: make test
Expand All @@ -37,7 +37,7 @@ jobs:

runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: brew install openblas lapack
- run: make DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# source /opt/intel/mkl/bin/mklvars.sh
- name: checkout project code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build SCS MKL and test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_openmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: checkout project code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install deps
run: sudo apt-get install libopenblas-dev liblapack-dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buildpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
sudo apt-get install libopenblas-dev liblapack-dev
export CC=g++
Expand All @@ -19,7 +19,7 @@ jobs:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - run: choco install clapack
# - run: make
# - run: make test
Expand All @@ -28,7 +28,7 @@ jobs:
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
brew install openblas lapack
export CC=clang++
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
sudo apt-get install libopenblas-dev liblapack-dev
mkdir out
Expand All @@ -26,7 +26,7 @@ jobs:
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
brew install openblas lapack
mkdir out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# source /opt/intel/mkl/bin/mklvars.sh
- name: checkout project code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build SCS MKL and test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_openmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
sudo apt-get install libopenblas-dev liblapack-dev
mkdir out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install OS dependencies
run: |
sudo apt-get install doxygen
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: Jimver/cuda-toolkit@v0.2.5
- run: sudo apt-get install libopenblas-dev liblapack-dev
- run: make gpu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt-get install libopenblas-dev liblapack-dev valgrind
- run: make
Expand Down

0 comments on commit e2f9463

Please sign in to comment.