mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 10:35:25 +00:00
7c49bdd953
* migration to circleci 2.0 config * install docker compose * add setup remote docker * comment out docker compose * using public petstore for testing * use only one working_directory * use openapitools/openapi-petstore instead * disable auth in petstore server * run petstore server locally via mvn jetty * fix typo * test go first * test pet server at port 8080 * remove docker compose command * wait for server to start up * sleep longer * test mvn jetty again * use machine executor * comment out docker * comment out restore cache * sleep for 30s * change petstore port * restore petstore docker * fix docker run command * restore cache, clean up comments
94 lines
4.1 KiB
YAML
94 lines
4.1 KiB
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
machine:
|
|
docker_layer_caching: true
|
|
working_directory: ~/OpenAPITools/openapi-generator
|
|
parallelism: 1
|
|
shell: /bin/bash --login
|
|
environment:
|
|
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
|
|
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
|
|
DOCKER_GENERATOR_IMAGE_NAME: openapitools/openapi-generator
|
|
DOCKER_CODEGEN_CLI_IMAGE_NAME: openapitools/openapi-generator-cli
|
|
steps:
|
|
# Machine Setup
|
|
# If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
|
|
# The following `checkout` command checks out your code to your working directory. In 1.0 we did this implicitly. In 2.0 you can choose where in the course of a job your code should be checked out.
|
|
- checkout
|
|
# Prepare for artifact and test results collection equivalent to how it was done on 1.0.
|
|
# In many cases you can simplify this from what is generated here.
|
|
# 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/'
|
|
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
|
|
# This is based on your 1.0 configuration file or project settings
|
|
- run:
|
|
command: sudo update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java; sudo update-alternatives --set javac /usr/lib/jvm/java-8-openjdk-amd64/bin/javac; echo -e "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64" >> $BASH_ENV
|
|
- run:
|
|
command: 'sudo docker info >/dev/null 2>&1 || sudo service docker start; '
|
|
- run:
|
|
command: |-
|
|
printf '127.0.0.1 petstore.swagger.io
|
|
' | sudo tee -a /etc/hosts
|
|
# Dependencies
|
|
# This would typically go in either a build or a build-and-test job when using workflows
|
|
# Restore the dependency cache
|
|
- restore_cache:
|
|
keys:
|
|
# This branch if available
|
|
- v1-dep-{{ .Branch }}-
|
|
# Default branch if not
|
|
- v1-dep-master-
|
|
# This is based on your 1.0 configuration file or project settings
|
|
- run: sudo add-apt-repository ppa:duggan/bats --yes
|
|
- run: sudo apt-get update -qq
|
|
- run: sudo apt-get install -qq bats
|
|
- run: sudo apt-get install -qq curl
|
|
# - run: docker pull openapitools/openapi-petstore
|
|
# - run: docker run -d -e OPENAPI_BASE_PATH=/v3 -e DISABLE_API_KEY=1 -e DISABLE_OAUTH=1 -p 80:8080 openapitools/openapi-petstore
|
|
- run: docker pull swaggerapi/petstore
|
|
- run: docker run -d -e SWAGGER_HOST=http://petstore.swagger.io -e SWAGGER_BASE_PATH=/v2 -p 80:8080 swaggerapi/petstore
|
|
- run: docker ps -a
|
|
- run: sleep 30
|
|
- run: cat /etc/hosts
|
|
# This is based on your 1.0 configuration file or project settings
|
|
- run: cp CI/pom.xml.circleci pom.xml
|
|
# Save dependency cache
|
|
- save_cache:
|
|
key: v1-dep-{{ .Branch }}
|
|
paths:
|
|
# This is a broad list of cache paths to include many possible development environments
|
|
# You can probably delete some of these entries
|
|
- vendor/bundle
|
|
- ~/virtualenvs
|
|
- ~/.m2
|
|
- ~/.ivy2
|
|
- ~/.bundle
|
|
- ~/.go_workspace
|
|
- ~/.gradle
|
|
- ~/.cache/bower
|
|
# These cache paths were specified in the 1.0 config
|
|
- ~/.sbt
|
|
# Test
|
|
# This would typically be a build job when using workflows, possibly combined with build
|
|
# This is based on your 1.0 configuration file or project settings
|
|
- run: java -version
|
|
- run: mvn --quiet clean install
|
|
- run: mvn --quiet verify -Psamples
|
|
- run: if [ $? -ne 0 ]; then exit 1; fi
|
|
- run: sudo update-java-alternatives -s java-1.7.0-openjdk-amd64
|
|
- run: java -version
|
|
- run: cp CI/pom.xml.circleci.java7 pom.xml
|
|
- run: mvn --quiet clean install
|
|
- run: mvn --quiet verify -Psamples
|
|
- run: if [ $? -ne 0 ]; then exit 1; fi
|
|
# Teardown
|
|
# If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
|
|
# Save test results
|
|
- store_test_results:
|
|
path: /tmp/circleci-test-results
|
|
# Save artifacts
|
|
- store_artifacts:
|
|
path: /tmp/circleci-artifacts
|
|
- store_artifacts:
|
|
path: /tmp/circleci-test-results
|