Add build configuration
This commit is contained in:
parent
681fbc3a96
commit
620c1133ae
22
.gitea/workflows/build.yaml
Normal file
22
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: SORM build
|
||||||
|
run-name: Build 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Update apt repository
|
||||||
|
- run: apt update
|
||||||
|
- name: Installing dependencies
|
||||||
|
- run: apt get install build-essential sqlite3 libsqlite3-dev libreadline-dev libpython3-dev make -y
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: List files in the repository
|
||||||
|
run: |
|
||||||
|
ls ${{ gitea.workspace }}
|
||||||
|
- name: Build project (misses rlib.h)
|
||||||
|
- run: make build
|
||||||
|
- run: echo "This job's status is ${{ job.status }}."
|
||||||
|
- name: ${{ job.status }}
|
||||||
|
- run: echo "Done"
|
Loading…
Reference in New Issue
Block a user