Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/apple_m.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Print system information
run: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
fi

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
# We include the commit sha in the cache key, as new cache entries are
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arm64_graviton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Print system information
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
fi

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
# We include the commit sha in the cache key, as new cache entries are
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/c910v.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: install build deps
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
gcc-${{ matrix.apt_triple }} gfortran-${{ matrix.apt_triple }} libgomp1-riscv64-cross libglib2.0-dev

- name: checkout qemu
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: XUANTIE-RV/qemu
path: qemu
Expand All @@ -58,7 +58,7 @@ jobs:
make install

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/codspeed-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
pyver: ["3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.pyver }}

Expand All @@ -43,7 +43,7 @@ jobs:
fi

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
# We include the commit sha in the cache key, as new cache entries are
Expand Down Expand Up @@ -147,8 +147,9 @@ jobs:
OPENBLAS_NUM_THREADS=1 pytest benchmarks/bench_blas.py -k 'gesdd'

- name: Run benchmarks
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@v4
with:
mode: simulation
token: ${{ secrets.CODSPEED_TOKEN }}
run: |
cd benchmark/pybench
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
if: "github.repository == 'OpenMathLib/OpenBLAS'"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.10"

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/dynamic_arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Print system information
run: |
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
fi

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
# We include the commit sha in the cache key, as new cache entries are
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
${{ matrix.target-prefix }}-ccache

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Prepare ccache
# Get cache location of ccache
Expand All @@ -266,7 +266,7 @@ jobs:
echo "key=ccache-msys2-${{ matrix.msystem }}-${{ matrix.idx }}-${{ matrix.build-type }}-${{ github.ref }}-${{ github.sha }}" >> $GITHUB_OUTPUT

- name: Restore ccache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:

- name: Save ccache
# Save the cache after we are done (successfully) building
uses: actions/cache/save@v3
uses: actions/cache/save@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -357,15 +357,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y ccache gcc-${{ matrix.triple }} gfortran-${{ matrix.triple }} libgomp1-${{ matrix.target }}-cross

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand All @@ -392,7 +392,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/harmonyos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX=install \
-DCMAKE_BUILD_TYPE=Release \
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: ndk-install
run: |
wget https://repo.huaweicloud.com/harmonyos/os/4.1.1-Release/ohos-sdk-windows_linux-public.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/loongarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Install APT deps
run: |
Expand All @@ -47,7 +47,7 @@ jobs:
gcc-14-loongarch64-linux-gnu g++-14-loongarch64-linux-gnu gfortran-14-loongarch64-linux-gnu

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/loongarch64_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Install libffi6
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
tar -xf loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3.tar.xz -C /opt

- name: Checkout qemu
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: qemu/qemu
path: qemu
Expand All @@ -69,7 +69,7 @@ jobs:
echo "PATH=$GITHUB_WORKSPACE:/opt/clang+llvm_8.0.1-6_amd64-linux-gnu_debian-10/bin:/opt/loongson-gnu-toolchain-8.3-x86_64-loongarch64-linux-gnu-rc1.3/bin:$PATH" >> $GITHUB_ENV

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mips64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: install build deps
run: |
Expand All @@ -44,7 +44,7 @@ jobs:
gcc-${{ matrix.triple }} gfortran-${{ matrix.triple }} libgomp1-mips64el-cross libglib2.0-dev

- name: checkout qemu
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: qemu/qemu
path: qemu
Expand All @@ -58,7 +58,7 @@ jobs:
make install

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-Homebrew-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
sleep ${delay}
if: github.event_name == 'schedule'

- uses: actions/checkout@v2
- uses: actions/checkout@v6
# This isn't even needed, technically. Homebrew will get `develop` via git

- name: Update Homebrew
Expand All @@ -69,7 +69,7 @@ jobs:
mv *.bottle.tar.gz bottles

- name: Upload bottle
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: openblas--HEAD.catalina.bottle.tar.gz
path: bottles
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/riscv64_vector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: install build deps
run: |
Expand All @@ -48,7 +48,7 @@ jobs:
chmod +x /opt/riscv/bin/qemu-riscv64

- name: Compilation cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-${{ matrix.target }}-${{ github.ref }}-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: windows-11-arm
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Install LLVM for Win-ARM64
shell: pwsh
Expand Down
Loading