Set up continuous integration in Forgejo #75

Merged
glen merged 23 commits from Vectornaut/dyna3:forgejo-ci into main 2025-04-02 20:31:42 +00:00
Showing only changes of commit 5f45c9c7a4 - Show all commits

View file

@ -3,11 +3,21 @@ on:
push:
branches: [main]
jobs:
# build and tag the Docker image that the rest of the jobs will run on
setup-image:
runs-on: self-hosted
defaults:
run:
working-directory: tools/ci-image
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: docker build . --tag dyna3:ci
# build the application, reporting success if there are no errors or warnings
build:
runs-on: docker
container:
image: dyna3:ci
needs: [setup-image]
defaults:
run:
working-directory: app-proto
@ -21,6 +31,7 @@ jobs:
runs-on: docker
container:
image: dyna3:ci
needs: [setup-image]
defaults:
run:
working-directory: app-proto
@ -38,6 +49,7 @@ jobs:
runs-on: docker
container:
image: dyna3:ci
needs: [setup-image]
defaults:
run:
working-directory: app-proto