Skip to content

Commit

Permalink
ci: add nop versions of all scripts to our integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
behrmann committed Aug 1, 2024
1 parent 0e87b3a commit 39044a5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,18 @@ jobs:
DefaultDeviceTimeoutSec=180
EOF
tee mkosi.configure <<EOF
echo "Hello from inside mkosi.configure!" >&2
cat
EOF
for script in sync prepare build postinst finalize postoutput clean
do
tee "mkosi.${script}" <<TOK
echo "Hello from inside mkosi.${script}" >&2
TOK
done
- name: Run integration tests
run: |
sudo --preserve-env \
Expand Down

0 comments on commit 39044a5

Please sign in to comment.