telodendria/.gitea/workflows/test-push.yaml

33 lines
894 B
YAML
Raw Normal View History

name: Testing pushed commits
run-name: "Testing pushed changes (HEAD@${{ github.head_ref }}) on ${{ runner.os }}"
on: [push]
jobs:
# Compiles out everything.
2023-11-02 18:00:01 +00:00
setup-repo:
# TODO: More architectures
runs-on: debian
steps:
# Checks out Telodendria, and setups a basic build environment.
- name: Checking out Telodendria
2023-11-02 17:35:20 +00:00
uses: actions/checkout@v4
2023-11-02 18:00:01 +00:00
build:
runs-on: debian
steps:
- name: Setup build environment
2023-11-02 18:33:52 +00:00
uses: https://git.freetards.xyz/lda/ci-setup-cc-ssl@v1
2023-11-02 16:37:31 +00:00
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