mirror of
https://git.telodendria.io/Telodendria/Cytoplasm.git
synced 2025-04-25 02:16:03 +00:00
First attempt to use new CI runner. (#55)
Reviewed-on: https://git.telodendria.io/Telodendria/Cytoplasm/pulls/55 Co-authored-by: Jordan Bancino <jordan@bancino.net> Co-committed-by: Jordan Bancino <jordan@bancino.net>
This commit is contained in:
parent
8987802437
commit
ff094b50f2
2 changed files with 18 additions and 25 deletions
18
.forgejo/workflows/compile.yaml
Normal file
18
.forgejo/workflows/compile.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Compile Cytoplasm
|
||||
run-name: Compile Cytoplasm on ${{ forgejo.actor }}
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
"Compile Cytoplasm":
|
||||
strategy:
|
||||
matrix:
|
||||
os: [alpine]
|
||||
arch: [aarch64]
|
||||
runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"]
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Configure Cytoplasm
|
||||
run: ./configure
|
||||
- name: Build Cytoplasm
|
||||
run: make
|
Loading…
Add table
Add a link
Reference in a new issue