Skip to content

Commit

Permalink
CC-834 try using busybox
Browse files Browse the repository at this point in the history
  • Loading branch information
libmartinito committed Nov 28, 2023
1 parent fbac06f commit 3cb3c63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: grep --version
- run: echo "123" | grep -e "\d"
- run: echo "123" | grep "\d"
- run: echo "123" | grep -E "\d"
- run: echo "123" | ./internal/test_helpers/pass_all/your_grep.sh -E "\d"

- name: Set up Busybox
run: |
sudo apt-get update
sudo apt-get install -y Busybox
- run: make test
2 changes: 1 addition & 1 deletion internal/test_helpers/pass_all/your_grep.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
exec grep "$@"
exec busybox grep "$@"

0 comments on commit 3cb3c63

Please sign in to comment.