Skip to content

Commit

Permalink
Update experiment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
plengauer authored Apr 19, 2024
1 parent 2d6f96f commit 35db3a3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/experiment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ on:
workflow_call:

jobs:
experiment:
experiment-log:
runs-on: ubuntu-latest
steps:
- run: pstree -c -l
- run: |
cat /proc/$$/cmdline | tr '\000-\037' ' '
cat /proc/$PPID/cmdline | tr '\000-\037' ' '
Expand All @@ -27,3 +26,13 @@ jobs:
done
- run: printenv
- run: set

experiment-inject:
runs-on: ubuntu-latest
steps:
- run: |
file=$(echo "$0" | rev | cut -d / -f 2- | rev | xargs find -iname 'set_env_*')
echo $file
echo "FOO=BAR" >> $file
- run: printenv
- run: set

0 comments on commit 35db3a3

Please sign in to comment.