Skip to content

Commit

Permalink
disable arm64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrause committed Jun 14, 2024
1 parent e434d6f commit 9668093
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
run: cd src && make -f Makefile.linux-x86.mk
- name: Test
run: ./loda test
build-linux-arm64:
runs-on:
- self-hosted
- Linux
- ARM64
steps:
- uses: actions/checkout@v2
- name: Build
run: cd src && make -f Makefile.linux-arm64.mk
- name: Test
run: ./loda test
# build-linux-arm64:
# runs-on:
# - self-hosted
# - Linux
# - ARM64
# steps:
# - uses: actions/checkout@v2
# - name: Build
# run: cd src && make -f Makefile.linux-arm64.mk
# - name: Test
# run: ./loda test
build-macos:
runs-on: macos-11
steps:
Expand Down
38 changes: 19 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,25 @@ jobs:
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
build-linux-arm64:
needs: create-release
runs-on:
- self-hosted
- Linux
- ARM64
steps:
- uses: actions/checkout@v2
- name: Build
run: cd src && make -f Makefile.linux-arm64.mk loda LODA_PLATFORM=linux-arm64 LODA_VERSION=${{ needs.create-release.outputs.version }}
- name: Upload
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ./loda
asset_name: loda-linux-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
# build-linux-arm64:
# needs: create-release
# runs-on:
# - self-hosted
# - Linux
# - ARM64
# steps:
# - uses: actions/checkout@v2
# - name: Build
# run: cd src && make -f Makefile.linux-arm64.mk loda LODA_PLATFORM=linux-arm64 LODA_VERSION=${{ needs.create-release.outputs.version }}
# - name: Upload
# uses: actions/upload-release-asset@v1
# with:
# upload_url: ${{ needs.create-release.outputs.upload_url }}
# asset_path: ./loda
# asset_name: loda-linux-arm64
# asset_content_type: application/octet-stream
# env:
# GITHUB_TOKEN: ${{ github.token }}
build-macos:
needs: create-release
runs-on: macos-11
Expand Down

0 comments on commit 9668093

Please sign in to comment.