telodendria/.gitea/workflows/test-push.yaml
Load Accumulator 9139661046
Some checks failed
Testing pushed commits / compile-all (push) Failing after 6s
[FIX] Set to 'debian' instead of 'i386-debian'
2023-11-02 18:14:15 +01:00

27 lines
734 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:
# Setups a basic build environment.
- 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