Skip to content

Commit 03afb6c

Browse files
authored
Merge pull request #210 from courtneypacheco/update-default-tmp-dir-path
chore: Change default temporary write directory in all e2e CI jobs from `tmpfs` to `/home/tmp`
2 parents e31d19b + 82a6c77 commit 03afb6c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/e2e-nvidia-l4-x1.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ concurrency:
2626

2727
env:
2828
LC_ALL: en_US.UTF-8
29+
TMPDIR: /home/tmp
2930

3031
defaults:
3132
run:
@@ -81,6 +82,7 @@ jobs:
8182
- name: Install Packages
8283
run: |
8384
cat /etc/os-release
85+
mkdir -p "${TMPDIR}"
8486
sudo dnf install -y gcc gcc-c++ make git python3.11 python3.11-devel
8587
8688
- name: Checkout instructlab/instructlab

.github/workflows/e2e-nvidia-l40s-x4.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
required: true
1313
default: 'main'
1414

15+
env:
16+
TMPDIR: /home/tmp
17+
1518
jobs:
1619
start-large-ec2-runner:
1720
runs-on: ubuntu-latest
@@ -57,6 +60,7 @@ jobs:
5760
- name: Install Packages
5861
run: |
5962
cat /etc/os-release
63+
mkdir -p "${TMPDIR}"
6064
sudo dnf install -y gcc gcc-c++ make git python3.11 python3.11-devel
6165
6266
- name: Checkout instructlab/instructlab

0 commit comments

Comments
 (0)