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'