[CI] Hopefully this works

This commit is contained in:
LDA 2024-09-10 20:28:14 +02:00
commit 60f3dc12c1

View file

@ -11,11 +11,19 @@ jobs:
echo $(uname -a) $(env | grep container)
apt update -y
apt install -y build-essential liblmdb-dev nodejs libssl-dev git
- name: Clone Cytoplasm
- name: Clone/Configure Cytoplasm
run: |
git clone https:/git.telodendria.io/Telodendria/Cytoplasm
cd Cytoplasm
./configure --with-lmdb
- name: Build Cytoplasm
run: make -j$(nproc)
- name: Install Cytoplasm
run: make install
- name: Clone Parsee
uses: actions/checkout@v3
with:
repository: "Telodendria/Cytoplasm"
github-server-url: 'https://git.telodendria.io'
- name: Configure Cytoplasm
run: ./configure --with-lmdb
- name: Build Parsee
run: 'make && make ayadoc'
- name: Install Parsee
run: 'make install'