Skip to content

Commit

Permalink
REFACTOR-78: Set universal path to interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
grafviktor committed Oct 6, 2024
1 parent d19d861 commit e0aaaaf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
with:
go-version: 1.23
cache: true
- name: Setup Tools
run: sudo apt-get update && sudo apt-get install ffmpeg && go install github.com/charmbracelet/[email protected]
- name: Install system packages
run: sudo apt-get update && sudo apt-get install -y ffmpeg ttyd
- name: Install VHS utility
run: go install github.com/charmbracelet/[email protected]
- name: Build Binary
run: go build -o gg ./cmd/goto/*.go
- name: Run integration tests
run: e2e/run.sh
run: vhs -v && ./e2e/run.sh
4 changes: 3 additions & 1 deletion e2e/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash
#!/usr/bin/env bash

set -x
set -e
cd $(dirname "$(readlink -f "$0")")

TMP_HOME=temp
HOSTS_FILE="${TMP_HOME}"/hosts.yaml
Expand Down

0 comments on commit e0aaaaf

Please sign in to comment.