Fix Issue 18224 - Load x-field-extra-annotation in the operation para… #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- modules/openapi-generator-cli/pom.xml | |
- modules/openapi-generator-cli/Dockerfile | |
pull_request: | |
paths: | |
- Dockerfile | |
- run-in-docker.sh | |
- pom.xml | |
- modules/openapi-generator-online/pom.xml | |
- modules/openapi-generator-online/Dockerfile | |
- modules/openapi-generator-cli/pom.xml | |
- modules/openapi-generator-cli/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 | |
- name: Build and test modules/openapi-generator-cli | |
shell: bash | |
run: | | |
cp docker-entrypoint.sh ./modules/openapi-generator-cli | |
docker build modules/openapi-generator-cli/ -t cli-test | |
docker run --rm -v "${PWD}:/local" cli-test generate \ | |
-i https://raw.githubusercontent.com/openapitools/openapi-generator/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml \ | |
-g go \ | |
-o /local/out/go |