telodendria/.gitea/workflows/test-push.yaml
Load Accumulator 56eefe32b9
All checks were successful
Testing pushed commits / compile-all (push) Successful in 36s
[FIX/MOD] Don't use full repo link
2023-11-02 20:47:04 +01:00

36 lines
1.1 KiB
YAML

name: Testing pushed commits
run-name: "Testing pushed changes (HEAD@${{ github.head_ref }}) on ${{ runner.os }}"
on: [push]
jobs:
# Compiles out everything.
compile-all:
# TODO: More architectures
runs-on: debian
steps:
# Checks out Telodendria, and setups a basic build environment.
- name: Checking out Telodendria
uses: actions/checkout@v4
- name: Setup build environment
uses: https://git.telodendria.io/lda/setup-buildenv@master
with:
compiler: gcc
ssl: openssl
# Then, compile out Cytoplasm
- name: Compiles Cytoplasm
uses: https://git.telodendria.io/lda/setup-cytoplasm-telodendria@master
with:
compiler: gcc
install: true
# Finally, builds out Telodendria with everything.
- name: Compiles Telodendria
uses: https://git.telodendria.io/lda/setup-cytoplasm-telodendria@master
with:
compiler: gcc
checkout: Telodendria
install: false
# TODO: Make (eventually) a static build out to deploy?