Compare commits

...

5 Commits

Author SHA1 Message Date
nkanaev
0aed9b51a9 reorganise build workflow 2025-03-21 12:02:06 +00:00
nkanaev
0bd7a66086 reorganise build workflow 2025-03-21 11:45:06 +00:00
nkanaev
2b6823a277 remove cache between builds 2025-03-21 11:20:21 +00:00
nkanaev
dd7ed84a6c disable windows_amd64_gui temporarily 2025-03-21 10:10:16 +00:00
nkanaev
2c6a5ca971 fix windows file extension 2025-03-21 08:28:53 +00:00

View File

@ -29,13 +29,13 @@ jobs:
id: darwin_amd64_gui
cmd: make darwin_amd64_gui
out: out/darwin_amd64_gui/yarr.app
- name: Build arm64
- name: Build arm64 cli
uses: ./.github/actions/prepare
with:
id: darwin_arm64
cmd: make darwin_arm64
out: out/darwin_arm64/yarr
- name: Build amd64
- name: Build amd64 cli
uses: ./.github/actions/prepare
with:
id: darwin_amd64
@ -52,38 +52,22 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: '^1.18'
- name: Setup Zig
uses: mlugg/setup-zig@v1
- name: Build amd64 gui
uses: ./.github/actions/prepare
with:
version: 0.14.0
id: windows_amd64_gui
cmd: make windows_amd64_gui
out: out/windows_amd64_gui/yarr.exe
- name: Build arm64 gui
if: false
uses: ./.github/actions/prepare
with:
id: windows_arm64_gui
cmd: make windows_arm64_gui
out: out/windows_arm64_gui/yarr.app
- name: Build amd64 gui
uses: ./.github/actions/prepare
with:
id: windows_amd64_gui
cmd: make windows_amd64_gui
out: out/windows_amd64_gui/yarr.app
- name: Build arm64
uses: ./.github/actions/prepare
with:
id: windows_arm64
cmd: make windows_arm64
out: out/windows_arm64/yarr
- name: Build amd64
uses: ./.github/actions/prepare
with:
id: windows_amd64
cmd: make windows_amd64
out: out/windows_amd64/yarr
out: out/windows_arm64_gui/yarr.exe
build_linux:
name: Build for Linux
build_multi_cli:
name: Build for Windows/MacOS/Linux CLI
runs-on: ubuntu-22.04
steps:
- name: Checkout
@ -96,30 +80,42 @@ jobs:
uses: mlugg/setup-zig@v1
with:
version: 0.14.0
- name: Build amd64
- name: Build linux/amd64
uses: ./.github/actions/prepare
with:
id: linux_amd64
cmd: make linux_amd64
out: out/linux_amd64/yarr
- name: Build arm64
- name: Build linux/arm64
uses: ./.github/actions/prepare
with:
id: linux_arm64
cmd: make linux_arm64
out: out/linux_arm64/yarr
- name: Build armv7
- name: Build linux/armv7
uses: ./.github/actions/prepare
with:
id: linux_armv7
cmd: make linux_armv7
out: out/linux_armv7/yarr
- name: Build windows/amd64
uses: ./.github/actions/prepare
with:
id: windows_amd64
cmd: make windows_amd64
out: out/windows_amd64/yarr
- name: Build windows/arm64
uses: ./.github/actions/prepare
with:
id: windows_arm64
cmd: make windows_arm64
out: out/windows_arm64/yarr
create_release:
name: Create Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [build_macos, build_windows, build_linux]
needs: [build_macos, build_windows, build_multi_cli]
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4.1.7