CI #452
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
# File and code auto-generated from GitHub (when initiating GitHub Actions) | |
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
# run the build at midnight every night | |
- cron: '0 0 * * *' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Build base dockerfile | |
- name: Build the base.Dockerfile | |
run: docker build -t base_cloudshell -f linux/base.Dockerfile . | |
# Build tools dockerfile | |
- name: Build the tools.Dockerfile | |
run: docker build -t tools_cloudshell --build-arg IMAGE_LOCATION=base_cloudshell -f linux/tools.Dockerfile . | |
# Run the test cases | |
- name: Run the test cases | |
run: docker run --volume $(pwd)/tests:/tests tools_cloudshell /bin/bash /tests/test.sh | |
# Show Docker image size | |
- name: find the pull request id | |
run: echo ISSUEID=$(echo "${{github.ref }}" | sed 's!refs/pull/\([0-9]*\)/merge!\1!') >> $GITHUB_ENV | |
- name: find the base size info | |
run: echo BASE_SIZE=$(docker inspect base_cloudshell:latest --format "{{.Size}}") >> $GITHUB_ENV | |
- name: find the tools size info | |
run: echo TOOLS_SIZE=$(docker inspect tools_cloudshell:latest --format "{{.Size}}") >> $GITHUB_ENV | |
- name: update a comment with size | |
run: | | |
echo "pull id $ISSUEID size $BASE_SIZE $TOOLS_SIZE" && \ | |
curl --request POST \ | |
--url https://api.github.com/repos/${{ github.repository }}/issues/$ISSUEID/comments \ | |
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ | |
--header 'content-type: application/json' \ | |
--header 'Accept: application/vnd.github.v3+json' \ | |
--data "{ | |
\"body\": \"Image size with this change is base: $(($BASE_SIZE / 1048576))MB, tools: $(($TOOLS_SIZE / 1048576))MB. \" | |
}" |