From 39a08f4bdbf378b73e4a882ce4d3107c7bba399d Mon Sep 17 00:00:00 2001 From: Beinsezii Date: Fri, 7 Jun 2024 21:59:56 -0700 Subject: [PATCH] Disable Mac/Win CI --- .github/workflows/build_release_master.yml | 44 +++++++++++----------- .github/workflows/build_release_tag.yml | 44 +++++++++++----------- README.md | 3 +- 3 files changed, 45 insertions(+), 46 deletions(-) diff --git a/.github/workflows/build_release_master.yml b/.github/workflows/build_release_master.yml index c4b55fe..700ab91 100644 --- a/.github/workflows/build_release_master.yml +++ b/.github/workflows/build_release_master.yml @@ -12,25 +12,25 @@ jobs: with: name: linux_binary path: target/release/linch - build-macos: - runs-on: macos-latest - steps: - - uses: actions/checkout@v4 - - name: Build MacOs Release - run: cargo build --release - - name: Upload MacOS Artifact - uses: actions/upload-artifact@v4 - with: - name: macos_binary - path: target/release/linch - build-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - name: Build Windows Release - run: cargo build --release - - name: Upload Windows Artifact - uses: actions/upload-artifact@v4 - with: - name: windows_exe - path: target/release/linch.exe + # build-macos: + # runs-on: macos-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Build MacOs Release + # run: cargo build --release + # - name: Upload MacOS Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: macos_binary + # path: target/release/linch + # build-windows: + # runs-on: windows-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Build Windows Release + # run: cargo build --release + # - name: Upload Windows Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: windows_exe + # path: target/release/linch.exe diff --git a/.github/workflows/build_release_tag.yml b/.github/workflows/build_release_tag.yml index a84c5d0..d9b627b 100644 --- a/.github/workflows/build_release_tag.yml +++ b/.github/workflows/build_release_tag.yml @@ -15,25 +15,25 @@ jobs: with: name: linux_binary path: target/release/linch - build-macos: - runs-on: macos-latest - steps: - - uses: actions/checkout@v4 - - name: Build MacOs Release - run: cargo build --release - - name: Upload MacOS Artifact - uses: actions/upload-artifact@v4 - with: - name: macos_binary - path: target/release/linch - build-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - name: Build Windows Release - run: cargo build --release - - name: Upload Windows Artifact - uses: actions/upload-artifact@v4 - with: - name: windows_exe - path: target/release/linch.exe + # build-macos: + # runs-on: macos-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Build MacOs Release + # run: cargo build --release + # - name: Upload MacOS Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: macos_binary + # path: target/release/linch + # build-windows: + # runs-on: windows-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Build Windows Release + # run: cargo build --release + # - name: Upload Windows Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: windows_exe + # path: target/release/linch.exe diff --git a/README.md b/README.md index f916a00..3b1066b 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,12 @@ You may export `WINIT_UNIX_BACKEND=x11` to force Linch to run in X11 mode. * Application does not stay always-on-top in Wayland * This is a current limitation from [winit](https://github.com/rust-windowing/winit) with [no current workaround](https://github.com/rust-windowing/winit/issues/2435) * Hardcoded for Linux - * While there's nothing (that I know of) stopping Linch from running on Windows or MacOS, there's not much of an incentive support them when they already have their own built-in launchers. * Hypothetically, `linch bin` might work out-of-the-box if you're so determined. All it does is search `PATH`. ## Installation Compiled binaries are provided on the [releases tab](https://github.com/Beinsezii/linch/releases) -Additionally, stable release binaries are automatically compiled and uploaded for Linux, Windows, and MacOS with the [Build Latest Release Tag Action](https://github.com/Beinsezii/linch/actions/workflows/build_release_tag.yml) +Additionally, stable release binaries are automatically compiled with the [Build Latest Release Tag Action](https://github.com/Beinsezii/linch/actions/workflows/build_release_tag.yml) while the latest unstable binaries are can be found in the [Build Master Release Action](https://github.com/Beinsezii/linch/actions/workflows/build_release_master.yml)