Add thiserror, revamp errors to hopefully be better #272
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Index | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup rust | |
| uses: ./.github/actions/setup-rust | |
| - name: Setup cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Build | |
| shell: bash | |
| id: build | |
| run: | | |
| cargo build --release --target aarch64-unknown-linux-gnu | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: geode-index | |
| path: ./target/aarch64-unknown-linux-gnu/release/geode-index |