From 60f3dc12c17711c871387b35b29b1f3d25d9f923 Mon Sep 17 00:00:00 2001 From: LDA Date: Tue, 10 Sep 2024 20:28:14 +0200 Subject: [PATCH] [CI] Hopefully this works --- .forgejo/workflows/check-gcc.yaml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/check-gcc.yaml b/.forgejo/workflows/check-gcc.yaml index b168ba2..edcf7fc 100644 --- a/.forgejo/workflows/check-gcc.yaml +++ b/.forgejo/workflows/check-gcc.yaml @@ -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'