Skip to content

Commit

Permalink
fixing arm nonbloom workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Feb 21, 2024
1 parent c752a6f commit 1886c72
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 6 deletions.
31 changes: 28 additions & 3 deletions .github/workflows/stable_nonbloom_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,34 @@ jobs:
ref: master
path: .ci_scripts
token: ${{ secrets.PUSH_TOKEN }}
- id: build
run: |
.ci/build_nonbloom.sh nonbloom stable "${{ matrix.job }}"
- uses: ctu-mrs/run-on-arch-action@master
name: build

id: build

with:
arch: aarch64
distro: noetic

githubToken: ${{ github.token }}

# Create an artifacts directory
setup: |
mkdir -p "/tmp/artifacts"
mkdir -p "/tmp/repository"
# Mount the artifacts directory as /artifacts in the container
dockerRunArgs: |
--volume "$PWD:/tmp/repository"
--volume "/tmp/artifacts:/tmp/artifacts"
# The shell to run commands with in the container
shell: /bin/sh

# Produce a binary artifact and place it in the mounted volume
run: |
/tmp/repository/.ci/build_nonbloom.sh nonbloom stable "${{ matrix.job }}"
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
30 changes: 27 additions & 3 deletions .github/workflows/unstable_nonbloom_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,33 @@ jobs:
ref: master
path: .ci_scripts
token: ${{ secrets.PUSH_TOKEN }}
- id: build
run: |
.ci/build_nonbloom.sh nonbloom unstable "${{ matrix.job }}"
- uses: ctu-mrs/run-on-arch-action@master
name: build

id: build

with:
arch: aarch64
distro: noetic

githubToken: ${{ github.token }}

# Create an artifacts directory
setup: |
mkdir -p "/tmp/artifacts"
mkdir -p "/tmp/repository"
# Mount the artifacts directory as /artifacts in the container
dockerRunArgs: |
--volume "$PWD:/tmp/repository"
--volume "/tmp/artifacts:/tmp/artifacts"
# The shell to run commands with in the container
shell: /bin/sh

# Produce a binary artifact and place it in the mounted volume
run: |
/tmp/repository/.ci/build_nonbloom.sh nonbloom unstable "${{ matrix.job }}"
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 1886c72

Please sign in to comment.