mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-05 10:01:41 -05:00
install emacs-libvterm
This commit is contained in:
parent
5b9d6c6005
commit
c7a74eaf99
1 changed files with 9 additions and 4 deletions
13
.github/workflows/melpazoid.yml
vendored
13
.github/workflows/melpazoid.yml
vendored
|
@ -8,7 +8,7 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Python 3.10
|
- name: Set up Python 3.10
|
||||||
|
@ -18,14 +18,19 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
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 emacs && emacs --version
|
||||||
sudo apt-get install libvterm
|
sudo apt-get install elpa-vterm
|
||||||
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
|
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
|
||||||
pip install ~/melpazoid
|
pip install ~/melpazoid
|
||||||
- name: Run
|
- name: Run
|
||||||
env:
|
env:
|
||||||
LOCAL_REPO: ${{ github.workspace }}
|
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:
|
# set this to false (or remove it) if the package isn't on MELPA:
|
||||||
EXIST_OK: false
|
EXIST_OK: false
|
||||||
run: echo $GITHUB_REF && make -C ~/melpazoid
|
run: |
|
||||||
|
echo '(setq vterm-always-compile-module t)' > ~/.emacs
|
||||||
|
emacs --batch --eval "(progn (require 'vterm) (vterm-module-compile))"
|
||||||
|
echo $GITHUB_REF && make -C ~/melpazoid
|
||||||
|
|
Loading…
Add table
Reference in a new issue