Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Oct 1, 2024
1 parent 717f759 commit d27c10b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- '*'
- '!ci-test'
pull_request:
branches:
- master
Expand Down
33 changes: 26 additions & 7 deletions .github/workflows/vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,37 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# https://github.com/lusingander/ttyd#install-on-linux
- name: Install ttyd
# - name: Install forked ttyd
# run: |
# sudo apt-get update
# sudo apt-get install -y build-essential cmake git libjson-c-dev libwebsockets-dev
# git clone https://github.com/lusingander/ttyd.git
# cd ttyd && mkdir build && cd build
# cmake ..
# make && sudo make install
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake git libjson-c-dev libwebsockets-dev
git clone https://github.com/lusingander/ttyd.git
cd ttyd && mkdir build && cd build
- name: Checkout forked ttyd
uses: actions/checkout@v4
with:
repository: lusingander/ttyd
ref: main
- name: Install forked ttyd
working-directory: ./ttyd
run: |
mkdir build && cd build
cmake ..
make && sudo make install
- name: Install vhs
run: |
go install github.com/lusingander/vhs@latest
- name: Checkout forked vhs
uses: actions/checkout@v4
with:
repository: lusingander/vhs
ref: main
- name: Install forked vhs
working-directory: ./vhs
run: go install ./...
- name: Check version
run: |
ttyd --version
Expand Down

0 comments on commit d27c10b

Please sign in to comment.