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 b14f748
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,20 @@ jobs:
DefaultDeviceTimeoutSec=180
EOF
tee mkosi.configure <<EOF
echo "Hello from inside mkosi.configure!" >&2
cat
EOF
# prepare and postinst are already used in CI
for script in sync build finalize postoutput clean
do
tee "mkosi.${script}" <<TOK
echo "Hello from inside mkosi.${script}" >&2
TOK
chmod +x "mkosi.${script}"
done
- name: Run integration tests
run: |
sudo --preserve-env \
Expand Down

0 comments on commit b14f748

Please sign in to comment.