Skip to content

Commit 14110ca

Browse files
committed
fix(ci): remove git-cliff
Signed-off-by: Artur Troian <[email protected]>
1 parent 1e1a093 commit 14110ca

File tree

4 files changed

+1
-12
lines changed

4 files changed

+1
-12
lines changed

.envrc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,6 @@ if ! has lz4; then
5858
exit 1
5959
fi
6060

61-
if ! has git-cliff; then
62-
echo "git-cliff is not installed"
63-
exit 1
64-
fi
65-
6661
if [ -z "$GOPATH" ]; then
6762
GOPATH=$(go env GOPATH)
6863
export GOPATH

.github/actions/setup-ubuntu/action.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,10 @@ runs:
1010
# Shell must explicitly specify the shell for each step. https://github.com/orgs/community/discussions/18597
1111
shell: bash
1212
run: sudo apt install -y make direnv unzip lz4 wget curl npm jq pv coreutils
13-
- uses: actions-rust-lang/setup-rust-toolchain@v1
1413
- name: Setup npm
1514
uses: actions/setup-node@v4
1615
with:
1716
node-version: 18
18-
- name: Install git-cliff
19-
uses: baptiste0928/cargo-install@v3
20-
with:
21-
crate: git-cliff
2217
- name: Detect required Go version
2318
shell: bash
2419
run: |

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Install dependencies
2222
run: |
23-
brew install bash direnv pv lz4 git-cliff
23+
brew install bash direnv pv lz4
2424
sudo chsh -s /usr/local/bin/bash
2525
- name: Hook direnv to bash
2626
run: echo 'eval "$(direnv hook bash)"' >> $HOME/.bashrc

script/tools.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ macos_deps=(
1010
"direnv"
1111
"pv"
1212
"lz4"
13-
"git-cliff"
1413
)
1514

1615
debian_deps=(

0 commit comments

Comments
 (0)