forked from loafle/openapi-generator-original
* Update base image of Dockerfile * Make github workflow "Docker tests" manually triggerable * Don't possibly downgrade TLS version * Update Dockerimage in ``run-in-docker.sh`` * Use Maven's non interactive mode inside workflow * Don't spam log * Use java 17 because it won't compile with 21 * Removed hard memory limit as memory should be controlled by the container * Update hub dockerfiles
41 lines
959 B
YAML
41 lines
959 B
YAML
name: Docker tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- Dockerfile
|
|
- run-in-docker.sh
|
|
- pom.xml
|
|
- modules/openapi-generator-online/pom.xml
|
|
- modules/openapi-generator-online/Dockerfile
|
|
pull_request:
|
|
paths:
|
|
- Dockerfile
|
|
- run-in-docker.sh
|
|
- pom.xml
|
|
- modules/openapi-generator-online/pom.xml
|
|
- modules/openapi-generator-online/Dockerfile
|
|
jobs:
|
|
build:
|
|
name: 'Build: Docker'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test run-in-docker.sh
|
|
shell: bash
|
|
run: |
|
|
sed -i 's/ -it / /g' run-in-docker.sh
|
|
./run-in-docker.sh mvn -B clean install
|
|
|
|
- name: Build Dockerfile
|
|
shell: bash
|
|
run: docker build .
|
|
|
|
- name: Build modules/openapi-generator-online
|
|
shell: bash
|
|
run: |
|
|
docker build modules/openapi-generator-online/ -t test
|