forked from Telodendria/Telodendria
Load Accumulator
1c21bd6e01
All checks were successful
Testing pushed commits / compile-all (push) Successful in 39s
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
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:
|
|
# Checks out Telodendria, and setups a basic build environment.
|
|
- name: Checking out Telodendria
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup build environment
|
|
uses: https://git.telodendria.io/lda/setup-buildenv@master
|
|
with:
|
|
compiler: gcc
|
|
ssl: openssl
|
|
|
|
# Then, compile out Cytoplasm
|
|
- name: Compiles Cytoplasm
|
|
uses: https://git.telodendria.io/lda/setup-cytoplasm-telodendria@master
|
|
with:
|
|
compiler: gcc
|
|
install: true
|
|
|
|
# Finally, builds out Telodendria with everything.
|
|
- name: Compiles Telodendria
|
|
uses: https://git.telodendria.io/lda/setup-cytoplasm-telodendria@master
|
|
with:
|
|
compiler: gcc
|
|
checkout: https://git.telodendria.io/Telodendria/Telodendria
|
|
install: true
|
|
|
|
# TODO: Make (eventually) a static build out?
|