chore: install docker #30
Workflow file for this run
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: Run One Use Case Example | ||
on: | ||
push: | ||
workflow_dispatch: | ||
inputs: | ||
use_case: | ||
description: 'Select a use case to run' | ||
required: true | ||
type: choice | ||
options: | ||
# --- refresh_use_cases_list.py: refresh list of use cases currently available [START] --- | ||
# --- do not edit, auto generated part by `make refresh_use_cases_list` --- | ||
- cifar/cifar_brevitas_finetuning | ||
- cifar/cifar_brevitas_training | ||
- credit_scoring | ||
- deployment/breast_cancer | ||
- deployment/cifar | ||
- deployment/sentiment_analysis | ||
- disease_prediction | ||
- federated_learning | ||
- hybrid_model | ||
- llm | ||
- sentiment_analysis_with_transformer | ||
- titanic | ||
# --- refresh_use_cases_list.py: refresh list of use cases currently available [END] --- | ||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
jobs: | ||
start-runner-linux: | ||
name: Start EC2 runner | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
label-38: ${{ steps.start-ec2-runner-38.outputs.label }} | ||
ec2-instance-id-38: ${{ steps.start-ec2-runner-38.outputs.ec2-instance-id || '' }} | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
- name: Start EC2 runner python 38 | ||
id: start-ec2-runner-38 | ||
uses: machulav/ec2-github-runner@fcfb31a5760dad1314a64a0e172b78ec6fc8a17e | ||
with: | ||
mode: start | ||
github-token: ${{ secrets.EC2_RUNNER_BOT_TOKEN }} | ||
ec2-image-id: ${{ secrets.AWS_EC2_AMI }} | ||
ec2-instance-type: "m6i.metal" | ||
subnet-id: ${{ secrets.AWS_EC2_SUBNET_ID }} | ||
security-group-id: ${{ secrets.AWS_EC2_SECURITY_GROUP_ID }} | ||
run-use-case-examples: | ||
needs: [start-runner-linux] | ||
runs-on: ${{ needs.start-runner-linux.outputs.label-38 }} | ||
container: | ||
image: ubuntu:20.04 | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y \ | ||
ca-certificates \ | ||
curl \ | ||
gnupg \ | ||
lsb-release | ||
mkdir -p /etc/apt/keyrings | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg | ||
echo \ | ||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ | ||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
apt-get update | ||
apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin | ||
apt-get install -y python3-venv make git git-lfs binutils | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Run One Use Case Example Script | ||
run: | | ||
USE_CASE=${{ github.event_name == 'push' && 'deployment/breast_cancer' || github.event.inputs.use_case }} | ||
make run_one_use_case_example USE_CASE=$USE_CASE | ||
stop-runner-linux: | ||
name: Stop EC2 runner | ||
needs: [run-use-case-examples, start-runner-linux] | ||
runs-on: ubuntu-20.04 | ||
if: ${{ always() && (needs.start-runner-linux.result != 'skipped') }} | ||
steps: | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
- name: Stop EC2 runner python 38 | ||
uses: machulav/ec2-github-runner@fcfb31a5760dad1314a64a0e172b78ec6fc8a17e | ||
if: ${{ always() && needs.start-runner-linux.outputs.ec2-instance-id-38 }} | ||
with: | ||
github-token: ${{ secrets.EC2_RUNNER_BOT_TOKEN }} | ||
label: ${{ needs.start-runner-linux.outputs.label-38 }} | ||
ec2-instance-id: ${{ needs.start-runner-linux.outputs.ec2-instance-id-38 }} | ||
mode: stop | ||
send-report: | ||
if: ${{ always() }} | ||
needs: | ||
[ | ||
start-runner-linux, | ||
run-use-case-examples, | ||
stop-runner-linux, | ||
] | ||
name: Send Slack notification | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Prepare whole job status | ||
if: ${{ always() }} | ||
continue-on-error: true | ||
env: | ||
NEEDS_JSON: ${{ toJSON(needs) }} | ||
run: | | ||
echo "${NEEDS_JSON}" > /tmp/needs_context.json | ||
JOB_STATUS=$(python3 ./script/actions_utils/actions_combine_status.py \ | ||
--needs_context_json /tmp/needs_context.json) | ||
echo "JOB_STATUS=${JOB_STATUS}" >> "$GITHUB_ENV" | ||
- name: Slack Notification | ||
if: ${{ always() }} | ||
continue-on-error: true | ||
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 | ||
env: | ||
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} | ||
SLACK_ICON: https://pbs.twimg.com/profile_images/1274014582265298945/OjBKP9kn_400x400.png | ||
SLACK_COLOR: ${{ env.JOB_STATUS || 'failure' }} | ||
SLACK_MESSAGE: "Run of single use case '${{ github.event.inputs.use_case }}' finished with status ${{ env.JOB_STATUS || 'failure' }} \ | ||
(${{ env.ACTION_RUN_URL }})\n\ | ||
- start-runner-linux: ${{ needs.start-runner-linux.result || 'Did not run.'}}\n\n\ | ||
- run-use-case-examples: ${{ needs.run-use-case-examples.result || 'Did not run.' }}\n\n\ | ||
- stop-runner-linux: ${{ needs.stop-runner-linux.result || 'Did not run.'}}" | ||
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }} | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |