telodendria/.gitea/workflows/test-push.yaml
Load Accumulator cd321bee14
Some checks failed
Testing pushed commits / setup-repo (push) Successful in 12s
Testing pushed commits / build (push) Failing after 7s
[TEST] Try to see what happens on debug mode
2023-11-02 19:03:42 +01:00

32 lines
874 B
YAML

name: Testing pushed commits
run-name: "Testing pushed changes (HEAD@${{ github.head_ref }}) on ${{ runner.os }}"
on: [push]
jobs:
# Compiles out everything.
setup-repo:
# TODO: More architectures
runs-on: debian
steps:
# Checks out Telodendria, and setups a basic build environment.
- name: Checking out Telodendria
uses: actions/checkout@v4
build:
runs-on: debian
steps:
- name: Setup build environment
uses: ./.gitea/actions/setup-build
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