Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: revert temp use case test workflow #687

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions .github/workflows/run_one_use_cases_example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: Run One Use Case Example
on:
push:
workflow_dispatch:
inputs:
use_case:
Expand Down Expand Up @@ -69,31 +68,20 @@ jobs:
run:
shell: bash
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set up Environment
run: |
# Setup commands if any, for example, installing dependencies, etc.
apt-get update && apt-get install -y python3-venv make git git-lfs binutils

# We need to freeze docker.io because its update requires user input
apt-mark hold docker.io

- name: Checkout Code
uses: actions/checkout@v4
with:
lfs: true

- name: Install dependencies
run: |
./script/make_utils/setup_os_deps.sh
make setup_env

- 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
make run_one_use_case_example USE_CASE=${{ github.event.inputs.use_case }}

stop-runner-linux:
name: Stop EC2 runner
Expand Down
Loading