Disable arm64 runner on CI/CD (#2400)

We don't have an ARM64 runner for creating release binaries since ~6 months.

Commenting this out until GitHub finally allows open source projects to use its own arm64 runners.
pull/2401/head
Disconnect3d 1 year ago committed by GitHub
parent 75615d45bf
commit a264783ff0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -46,37 +46,41 @@ jobs:
./dist-tarball/* ./dist-tarball/*
draft: true draft: true
token: ${{ secrets.TOKEN }} token: ${{ secrets.TOKEN }}
releases-arm64:
runs-on: ARM64
timeout-minutes: 60
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # @v3
- uses: cachix/install-nix-action@6ed004b9ccb68dbc28e7c85bee15fa93dbd214ac # @v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: build pwndbg
run: nix build '.#pwndbg' -o result-pwndbg
- name: build rpm # The action below is commented out because we don't have our own ARM64 runner anymore
run: nix build '.#rpm' -o dist-rpm # This waits to be uncommented when GH allows for ARM64 runners for open source projects
- name: build deb #
run: nix build '.#deb' -o dist-deb # releases-arm64:
- name: build apk # runs-on: ARM64
run: nix build '.#apk' -o dist-apk # timeout-minutes: 60
- name: build archlinux # steps:
run: nix build '.#archlinux' -o dist-archlinux # - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # @v3
- name: build tarball # - uses: cachix/install-nix-action@6ed004b9ccb68dbc28e7c85bee15fa93dbd214ac # @v22
run: nix build '.#tarball' -o dist-tarball # with:
# nix_path: nixpkgs=channel:nixos-unstable
- name: release #
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # @v1 # - name: build pwndbg
with: # run: nix build '.#pwndbg' -o result-pwndbg
files: | #
./dist-rpm/* # - name: build rpm
./dist-deb/* # run: nix build '.#rpm' -o dist-rpm
./dist-apk/* # - name: build deb
./dist-archlinux/* # run: nix build '.#deb' -o dist-deb
./dist-tarball/* # - name: build apk
draft: true # run: nix build '.#apk' -o dist-apk
token: ${{ secrets.TOKEN }} # - name: build archlinux
# run: nix build '.#archlinux' -o dist-archlinux
# - name: build tarball
# run: nix build '.#tarball' -o dist-tarball
#
# - name: release
# uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # @v1
# with:
# files: |
# ./dist-rpm/*
# ./dist-deb/*
# ./dist-apk/*
# ./dist-archlinux/*
# ./dist-tarball/*
# draft: true
# token: ${{ secrets.TOKEN }}

Loading…
Cancel
Save