Skip to content

Commit

Permalink
install emacs-libvterm
Browse files Browse the repository at this point in the history
  • Loading branch information
vale981 committed Sep 13, 2024
1 parent 5b9d6c6 commit bf1ef60
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/melpazoid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
Expand All @@ -18,14 +18,18 @@ jobs:
- name: Install
run: |
python -m pip install --upgrade pip
sudo add-apt-repository universe --yes
sudo apt-get update
sudo apt-get install emacs && emacs --version
sudo apt-get install libvterm
sudo apt-get install elpa-vterm
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
pip install ~/melpazoid
- name: Run
env:
LOCAL_REPO: ${{ github.workspace }}
RECIPE: (py-vterm-interaction :repo "vale981/py-vterm-interaction" :fetcher github)
RECIPE: (py-vterm-interaction :repo "vale981/py-vterm-interaction.el" :fetcher github)
# set this to false (or remove it) if the package isn't on MELPA:
EXIST_OK: false
run: echo $GITHUB_REF && make -C ~/melpazoid
run: |
emacs --batch --eval "(progn (require 'vterm) (vterm-module-compile))"
echo $GITHUB_REF && make -C ~/melpazoid

0 comments on commit bf1ef60

Please sign in to comment.