Skip to content

Commit

Permalink
Merge pull request #53 from nicmr/fix/linux-gnu-builds
Browse files Browse the repository at this point in the history
Readd linux gnu builds, fix installation instructions
  • Loading branch information
Ramilito authored Dec 13, 2023
2 parents 5b5129d + d61cab8 commit ca62c7b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Probably most of the speed gains are because I am bypassing kubectl and just edi
#### Binary
Download and extract the binary.
```zsh
KUBESESS_VERSION=1.2.10 && \
KUBESESS_VERSION=1.2.11 && \
KUBESESS_OS=x86_64-unknown-linux-gnu && \
wget "https://github.com/Ramilito/kubesess/releases/download/${KUBESESS_VERSION}/kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz" && \
mkdir -p $HOME/.kube/kubesess && tar zxpf kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz -C $HOME/.kube/kubesess && \
Expand Down
23 changes: 10 additions & 13 deletions .github/workflows/package_and_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,25 @@ jobs:
RUST_BACKTRACE: 1
strategy:
matrix:
build: [linux, macos, macos-arm]
include:
- build: linux
os: ubuntu-22.04
- os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-gnu
- os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-gnu
- os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-musl
name: x86_64-linux
- build: linux-arm
os: ubuntu-22.04
- os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-musl
name: aarch64-linux
- build: macos
os: macos-12
- os: macos-12
rust: stable
target: x86_64-apple-darwin
name: x86_64-macos
- build: macos-arm
os: macos-12
- os: macos-12
rust: stable
target: aarch64-apple-darwin
name: aarch64-macos
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kubesess"
version = "1.2.10"
version = "1.2.11"
authors = ["https://github.com/ramilito"]
edition = "2021"

Expand Down

0 comments on commit ca62c7b

Please sign in to comment.