Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI fix #33

Merged
merged 3 commits into from
Jan 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- clang-14

steps:
- name: Update system
run: sudo apt-get update

- name: Install prerequisites
run: >-
sudo apt-get install -y
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: Update system
run: sudo apt-get update

- name: Install prerequisites
run: >-
sudo apt-get install -y
Expand Down Expand Up @@ -61,6 +64,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: Update system
run: sudo apt-get update

- name: Install prerequisites
run: >-
sudo apt-get install -y
Expand Down Expand Up @@ -110,6 +116,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: Update system
run: sudo apt-get update

- name: Install prerequisites
run: >-
sudo apt-get install -y
Expand Down
2 changes: 2 additions & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ words:
- globbing
- gsub
- gumph
- howto
- htdocs
- ifndef
- incl
Expand Down Expand Up @@ -222,6 +223,7 @@ words:
- PDFEXE
- pirlen
- productbuild
- progname
- psselect
- radixes
- readmemh
Expand Down
6 changes: 3 additions & 3 deletions test/01/t0150a.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ test $? -eq 0 || no_result
#
test_crc16 < zero.length.file > test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 < single.a.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 < nine.digits.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 < upper-case-a.256.file >> test.out
Expand Down
6 changes: 3 additions & 3 deletions test/01/t0151a.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ test $? -eq 0 || no_result
#
test_crc16 -x < zero.length.file > test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -x < single.a.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -x < nine.digits.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -x < upper-case-a.256.file >> test.out
Expand Down
6 changes: 3 additions & 3 deletions test/01/t0152a.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ test $? -eq 0 || no_result
#
test_crc16 -a < zero.length.file > test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -a < single.a.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -a < nine.digits.file >> test.out
test $? -eq 0 || fail
echo >> test.out
echo | cat >> test.out
test $? -eq 0 || no_result

test_crc16 -a < upper-case-a.256.file >> test.out
Expand Down