Skip to content

Commit

Permalink
Copy less as part of the test
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems authored Dec 15, 2023
1 parent 2bf2a0b commit 5e64f3d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,12 @@ jobs:
id: repo
with:
name: repo
path: repo
- uses: actions/download-artifact@v3
id: build
with:
name: build
path: build
- name: Copy tests
run: |
mkdir -p ${{ steps.repo.outputs.download-path }}/tests
Expand All @@ -85,7 +87,10 @@ jobs:
opkg update
opkg install oxide oxide-extra inject_evdev liboxide-dev
# TODO test tarnish service
find tests -type f -executable -print | xargs -rI{} bash -c 'exec {}'
find tests -type f -executable -print | while read test; do
echo "Running test $test"
"$test"
done
opkg remove --force-removal-of-dependent-packages liboxide libsentry
path: ${{ steps.repo.outputs.download-path }}
release:
Expand Down

0 comments on commit 5e64f3d

Please sign in to comment.