mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 15:05:11 +00:00
15 lines
424 B
YAML
15 lines
424 B
YAML
name: Checks Parsee's correctness on GCC
|
|
on: [push]
|
|
jobs:
|
|
compile:
|
|
runs-on: amd64-debian
|
|
steps:
|
|
- name: Install LMDB+OpenSSL tools
|
|
run: echo $(uname -a) $(env | grep container)
|
|
- name: Clone Cytoplasm
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "https://git.telodendria.io/Telodendria/Cytoplasm"
|
|
- name: Configure Cytoplasm
|
|
run: ./configure --with-lmdb
|
|
|