Install earthly 0.7

This commit is contained in:
Gerald Pinder
2024-01-27 16:02:45 -05:00
parent 55c9c46d60
commit 61ac49c945
3 changed files with 11 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ modules:
- install-mkcert.sh
- install-syncthing.sh
- setup-kubectl.sh
- install-earthly.sh
- from-file: jp-packages.yml
- type: script
scripts:

View File

@@ -1,6 +1,6 @@
type: rpm-ostree
repos:
- https://pkg.earthly.dev/earthly.repo
# - https://pkg.earthly.dev/earthly.repo
- https://copr.fedorainfracloud.org/coprs/varlad/helix/repo/fedora-%OS_VERSION%/varlad-helix-fedora-%OS_VERSION%.repo
- https://pkgs.tailscale.com/stable/fedora/%OS_VERSION%/tailscale.repo
- https://cli.github.com/packages/rpm/gh-cli.repo
@@ -15,7 +15,7 @@ install:
- id3v2
- docker
- xinput
- earthly
# - earthly
- kubectl
- helm
- neovim

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
VERSION=v0.7.23
wget -q https://github.com/earthly/earthly/releases/download/$VERSION/earthly-linux-amd64 -O /usr/bin/earthly
chmod +x /usr/bin/earthly