Skip to content

Commit

Permalink
chore: remove windows build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
chaqchase committed Nov 27, 2024
1 parent 65f6ce1 commit 2912154
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
rust: [1.71.0]

steps:
Expand Down Expand Up @@ -66,17 +66,6 @@ jobs:
target: aarch64-apple-darwin
artifact_name: lla-macos-arm64

# Windows builds
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact_name: lla-windows-amd64.exe
- os: windows-latest
target: i686-pc-windows-msvc
artifact_name: lla-windows-i686.exe
- os: windows-latest
target: aarch64-pc-windows-msvc
artifact_name: lla-windows-arm64.exe

steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -107,11 +96,6 @@ jobs:
- name: Build release
run: cargo build --release --target ${{ matrix.target }}

- name: Prepare binary (Windows)
if: runner.os == 'Windows'
run: |
cp target/${{ matrix.target }}/release/lla.exe ${{ matrix.artifact_name }}
- name: Prepare binary (Unix)
if: runner.os != 'Windows'
run: |
Expand Down
6 changes: 1 addition & 5 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
[toolchain]
channel = "1.71.0"
components = ["rustfmt", "clippy"]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin"]

0 comments on commit 2912154

Please sign in to comment.