Skip to content

Commit

Permalink
ci: remove linux arm64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Apr 6, 2024
1 parent c05bb06 commit dd3c466
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ jobs:
uses: ./.github/workflows/build.yaml
secrets: inherit
with:
linux-arm64: true
linux-appimage: true
9 changes: 0 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Build app
on:
workflow_call:
inputs:
linux-arm64:
default: false
type: boolean
linux-appimage:
default: false
type: boolean
Expand Down Expand Up @@ -43,9 +40,6 @@ jobs:
cwd: ui/
args: [--frozen-lockfile]
version: ${{ env.PNPM_VERSION }}
- name: Setup QEMU
if: inputs.linux-arm64 && runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
- name: Setup Linux deps
if: runner.os == 'Linux'
run: |
Expand All @@ -62,9 +56,6 @@ jobs:
- name: Build x86_64 binary
if: runner.os == 'Linux'
run: make build/linux
- name: Build arm64 binary
if: runner.os == 'Linux' && inputs.linux-arm64
run: make linux-builder/binary-arm64
- name: Build AppImage
if: runner.os == 'Linux' && inputs.linux-appimage
run: make linux-builder/appimage
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
uses: ./.github/workflows/build.yaml
secrets: inherit
with:
linux-arm64: true
linux-appimage: true
mac-notarize: true
release:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning][].

- Macros configuration support.

### Removed

- Linux arm64 build. You can still build via `make linux-builder/binary-arm64`.

## [2.2.1]

### Fixed
Expand Down

0 comments on commit dd3c466

Please sign in to comment.