Skip to content

Commit

Permalink
Merge pull request #475 from courtneypacheco/update-default-tmp-dir-path
Browse files Browse the repository at this point in the history
chore: Change default temporary write directory in all e2e CI jobs from `tmpfs` to `/home/tmp`
  • Loading branch information
mergify[bot] authored Jan 10, 2025
2 parents 1c54405 + 63e1d9e commit c2656e5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e-nvidia-l4-x1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ concurrency:

env:
LC_ALL: en_US.UTF-8
TMPDIR: /home/tmp

defaults:
run:
Expand Down Expand Up @@ -81,6 +82,7 @@ jobs:
- name: Install Packages
run: |
cat /etc/os-release
mkdir -p "${TMPDIR}"
sudo dnf install -y gcc gcc-c++ make git python3.11 python3.11-devel
- name: Checkout instructlab/instructlab
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-nvidia-l40s-x4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
required: true
default: 'main'

env:
TMPDIR: /home/tmp

jobs:
start-large-ec2-runner:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -57,6 +60,7 @@ jobs:
- name: Install Packages
run: |
cat /etc/os-release
mkdir -p "${TMPDIR}"
sudo dnf install -y gcc gcc-c++ make git python3.11 python3.11-devel
- name: Checkout instructlab/instructlab
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e-nvidia-t4-x1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ concurrency:

env:
LC_ALL: en_US.UTF-8
TMPDIR: /home/tmp

defaults:
run:
Expand Down Expand Up @@ -81,6 +82,7 @@ jobs:
- name: Install Packages
run: |
cat /etc/os-release
mkdir -p "${TMPDIR}"
sudo dnf install -y gcc gcc-c++ make git python3.11 python3.11-devel
- name: Checkout instructlab/instructlab
Expand Down

0 comments on commit c2656e5

Please sign in to comment.