mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 15:15:10 +00:00
21 lines
604 B
YAML
21 lines
604 B
YAML
name: Checks Parsee's correctness on GCC
|
|
on: [push]
|
|
jobs:
|
|
compile:
|
|
runs-on: amd64-debian
|
|
container:
|
|
image: debian:12
|
|
steps:
|
|
- name: Install LMDB+OpenSSL tools
|
|
run: |
|
|
echo $(uname -a) $(env | grep container)
|
|
apt update -y
|
|
apt install -y build-essential liblmdb-dev nodejs libssl-dev git
|
|
- name: Clone Cytoplasm
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "Telodendria/Cytoplasm"
|
|
github-server-url: 'https://git.telodendria.io'
|
|
- name: Configure Cytoplasm
|
|
run: ./configure --with-lmdb
|
|
|