Update build configuration
Some checks failed
SORM build / build (push) Failing after 10s
SORM tests / Compile (push) Successful in 5s

This commit is contained in:
retoor 2024-11-22 16:30:01 +01:00
parent 620c1133ae
commit fb799b7837

View File

@ -6,17 +6,15 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Update apt repository - run: echo "Update apt repository"
- run: apt update - run: apt update
- name: Installing dependencies - run: echo "Installing dependencies"
- run: apt get install build-essential sqlite3 libsqlite3-dev libreadline-dev libpython3-dev make -y - run: apt get install build-essential sqlite3 libsqlite3-dev libreadline-dev libpython3-dev make -y
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- name: Build project (misses rlib.h) - run: echo "Build project (misses rlib.h)""
- run: make build - run: make build
- run: echo "This job's status is ${{ job.status }}." - run: echo "This job's status is ${{ job.status }}."
- name: ${{ job.status }}
- run: echo "Done"