Build-Test-Push #157
Workflow file for this run
This file contains hidden or 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: Build-Test-Push | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| Build-Test-Push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build rootless image | |
| run: ./build-rootless.sh $(echo $GITHUB_REPOSITORY |cut -d '/' -f1) | |
| - name: Build standard image | |
| run: ./build.sh $(echo $GITHUB_REPOSITORY |cut -d '/' -f1) | |
| - name: Trivy scan | |
| uses: aquasecurity/trivy-action@master | |
| with: | |
| image-ref: puppet-dev-tools:latest | |
| exit-code: 1 | |
| ignore-unfixed: true | |
| severity: 'CRITICAL,HIGH,MEDIUM' | |
| vuln-type: os | |
| timeout: 10m0s | |
| skip-files: "/root/.pdk/cache/ruby/*/gems/aws-sdk-core-*/lib/aws-sdk-ssooidc/client.rb,/opt/puppetlabs/pdk/share/cache/ruby/*/gems/aws-sdk-core-*/lib/aws-sdk-ssooidc/client.rb" | |
| - name: Run tests | |
| run: cd tests; ./run_tests.sh | |
| - name: Tag Docker images | |
| run: | | |
| docker tag puppet-dev-tools:latest-rootless ${{ secrets.DOCKERHUB_PUSH_USERNAME }}/puppet-dev-tools:puppet8-rootless | |
| docker tag puppet-dev-tools:latest ${{ secrets.DOCKERHUB_PUSH_USERNAME }}/puppet-dev-tools:puppet8 | |
| - name: List Docker images | |
| run: docker images --filter "reference=puppet-dev-tools*" --filter "reference=*/puppet-dev-tools*" | |
| - name: Show Docker image labels | |
| run: | | |
| docker inspect --format='{{json .Config.Labels}}' ${{ secrets.DOCKERHUB_PUSH_USERNAME }}/puppet-dev-tools:puppet8 | |
| - name: Login to Docker Hub | |
| run: docker login -u ${{ secrets.DOCKERHUB_LOGIN_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Push Docker images | |
| run: | | |
| docker push ${{ secrets.DOCKERHUB_PUSH_USERNAME }}/puppet-dev-tools:puppet8-rootless | |
| docker push ${{ secrets.DOCKERHUB_PUSH_USERNAME }}/puppet-dev-tools:puppet8 |