telodendria/.gitea/workflows/test-push.yaml
Load Accumulator 09eee69525
All checks were successful
Testing pushed commits / compile-all (push) Successful in 18s
[MOD] Use local repository
2023-11-02 20:06:45 +01:00

29 lines
859 B
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
# TODO: Implement all of this
# Compile out Cytoplasm
#- name: Compiles Cytoplasm
# uses: ./.gitea/actions/build-latest-cytoplasm
# Finally, builds out Telodendria with everything.
#- name: Compiles Telodendria
# uses: ./.gitea/actions/build-telodendria