Skip to content

Commit

Permalink
feat: implement error parser and error lookup (samuelvanderwaal#137)
Browse files Browse the repository at this point in the history
* feat: added a structure for downloading errors

* feat: added script to parse downloaded errors

* chore: apply changes according to linter and clippy

* feat: added wtf-is code as error parser

* chore: clippy edits part 2

* chore: remove cargo install to avoid error popping

* chore: swap parse-errors code to find

* chore: remove mpl-candy-machine dependency

* feat(find error): add auction house and auctioneer errors

* chore(workflows): change apt --> apt-get for stability

Co-authored-by: Samuel Vanderwaal <samuel.vanderwaal@gmail.com>
  • Loading branch information
sunguru98 and samuelvanderwaal authored Jun 19, 2022
1 parent 64b8e7f commit c28d96e
Show file tree
Hide file tree
Showing 15 changed files with 645 additions and 262 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
if [[ "${RUNNER_OS}" == "Linux" ]]; then
echo "Installing libudev-dev"
sudo apt install libudev-dev
sudo apt-get install libudev-dev
fi
cargo build --all --release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
sudo apt-get install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -56,7 +56,7 @@ jobs:
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
sudo apt-get install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -78,7 +78,7 @@ jobs:
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
sudo apt-get install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/temp
/binaries
.test_files
docs-src/book
docs-src/book
src/error_files
Loading

0 comments on commit c28d96e

Please sign in to comment.