Skip to content

Commit

Permalink
.github/workflows/testing.yml: install jj-0.23.0, fzf-0.56.3
Browse files Browse the repository at this point in the history
* .github/workflows/testing.yml: comment-out # ./testing.sh -x
* .github/workflows/testing.yml: work around missing ~/.local/bin/
	The Github action environment has ~/.local/bin/ in $PATH,
	without that directory actually existing.
*.github/workflows/testing.yml: install fzf-0.56.3 directly
*.github/workflows/testing.yml: install jj-0.23.0 directly

Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Dec 1, 2024
1 parent ed28533 commit 897f05f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0, submodules: recursive, github-server-url: 'https://github.com' } }
- run: git fetch -f --tags && git describe --long # Fix actions/checkout#290
- run: |
curl -s -L https://github.com/junegunn/fzf/releases/download/v0.56.3/fzf-0.56.3-linux_amd64.tar.gz |
tar zxvf - -C ~/.cargo/bin/ fzf
fzf --version
- run: |
curl -s -L https://github.com/martinvonz/jj/releases/download/v0.23.0/jj-v0.23.0-x86_64-unknown-linux-musl.tar.gz |
tar zxvf - -C ~/.cargo/bin/ ./jj
jj --version
#- run: ./testing.sh -x
- run: |
make check V=1
Expand Down

0 comments on commit 897f05f

Please sign in to comment.