diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d8e3e74c..5dc1cf04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2f60b7a..54d1712e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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