Skip to content

Commit

Permalink
cherry picked changes of .github/workflows/check_ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Feb 6, 2024
1 parent 57d8401 commit a2549ca
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/check_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,30 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }}

run_nodebook_tests:
run_notebook_tests:
if: "contains(github.event.head_commit.message, '[run-notebook-tests]')"
environment: AWS_SAGEMAKER
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
large-packages: false

- name: Free disk space by removing large directories
run: |
sudo rm -rf /usr/local/graalvm/
sudo rm -rf /usr/local/.ghcup/
sudo rm -rf /usr/local/share/powershell
sudo rm -rf /usr/local/share/chromium
sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf /opt/ghc
- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env

Expand Down

0 comments on commit a2549ca

Please sign in to comment.