Skip to content

Commit

Permalink
Add CentOS arm64 CI for bladebit (#353)
Browse files Browse the repository at this point in the history
* Add CentOS arm64 CI for bladebit

* fix centos workflow
  • Loading branch information
wallentx authored Jul 22, 2023
1 parent 9a76049 commit b5860ec
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,35 @@ jobs:
name: ${{ env.BB_ARTIFACT_NAME_CUDA }}
path: ${{ github.workspace }}/bin/${{ env.BB_ARTIFACT_NAME_CUDA }}
if-no-files-found: error

build-bladebit-centos-arm64:
runs-on: [ARM64, Linux]
container:
image: quay.io/centos/centos:stream8
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Get Version Number
id: version_number
run: .github/actions/get-version.sh centos arm64

- name: Install Prerequisites
run: |
dnf install -y gcc-toolset-9-gcc gcc-toolset-9-gcc-c++ \
cmake gmp-devel numactl-devel make git
- name: Build
run: |
source /opt/rh/gcc-toolset-9/enable
.github/actions/build-asset-unix.sh --artifact ${{ env.BB_ARTIFACT_NAME }} --version ${{ env.BB_VERSION }}
- name: Upload Artifact CentOS ARM64
uses: actions/upload-artifact@v3
with:
name: ${{ env.BB_ARTIFACT_NAME }}
path: ${{ github.workspace }}/bin/${{ env.BB_ARTIFACT_NAME }}
if-no-files-found: error

build-bladebit-cuda-linux-arm64:
runs-on: [ARM64, Linux]
Expand Down

0 comments on commit b5860ec

Please sign in to comment.