Compare commits

...

2 commits

Author SHA1 Message Date
Aaron Fenyes
15375dc932 Remove the CI image setup script
The CI workflow now builds and tags the CI image automatically, so we
don't need the manual setup script anymore.
2025-03-26 02:32:25 -07:00
Aaron Fenyes
5f45c9c7a4 Set up the CI image during the CI workflow 2025-03-26 02:12:05 -07:00
2 changed files with 12 additions and 5 deletions

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

View file

@ -1,5 +0,0 @@
#!/bin/sh
# build and tag the Docker image we use for continuous integration
docker build . --tag dyna3:ci