2023-11-02 16:24:55 +00:00
|
|
|
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
|
2023-11-02 17:12:08 +00:00
|
|
|
runs-on: i386-debian
|
2023-11-02 16:24:55 +00:00
|
|
|
steps:
|
|
|
|
# Setups a basic build environment.
|
|
|
|
- name: Setup build environment
|
|
|
|
uses: ./.gitea/actions/setup-build
|
2023-11-02 16:37:31 +00:00
|
|
|
with:
|
|
|
|
compiler: gcc
|
|
|
|
ssl: openssl
|
2023-11-02 16:24:55 +00:00
|
|
|
|
2023-11-02 16:37:31 +00:00
|
|
|
# TODO: Implement all of this
|
2023-11-02 16:24:55 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
|