forked from Telodendria/Telodendria
Load Accumulator
dc5e95e4c0
Some checks reported warnings
Testing pushed commits / compile-all (push) Has been cancelled
24 lines
657 B
YAML
24 lines
657 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: ubuntu-latest
|
|
steps:
|
|
# Setups a basic build environment.
|
|
- name: Setup build environment
|
|
uses: ./.gitea/actions/setup-build
|
|
|
|
# TODO
|
|
# 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
|
|
|
|
|