Skip to content

Commit

Permalink
add gsfs support, delete a lot of dead code, integrate jaeger tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
zzlk committed Feb 12, 2025
1 parent bfc8030 commit 41f6712
Show file tree
Hide file tree
Showing 30 changed files with 2,024 additions and 3,952 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:

env:
RUSTFLAGS: -Dwarnings
CARGO_NET_GIT_FETCH_WITH_CLI: true

jobs:
test:
Expand All @@ -33,10 +34,16 @@ jobs:
with:
toolchain: ${{matrix.rust}}
components: clippy, rustfmt
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: work around Cargo.lock filetime not being updated..?
run: touch Cargo.lock

- run: make ci
- run: ENABLE_GSFS=0 make update
- run: ENABLE_GSFS=0 make ci

- run: make push
- run: ENABLE_GSFS=1 make update
- run: ENABLE_GSFS=1 make ci
- run: ENABLE_GSFS=1 make push
9 changes: 8 additions & 1 deletion .github/workflows/pr-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ jobs:
with:
toolchain: ${{matrix.rust}}
components: clippy, rustfmt
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: work around Cargo.lock filetime not being updated..?
run: touch Cargo.lock

- run: make ci
- run: ENABLE_GSFS=0 make update
- run: ENABLE_GSFS=0 make ci

- run: ENABLE_GSFS=1 make update
- run: ENABLE_GSFS=1 make ci
Loading

0 comments on commit 41f6712

Please sign in to comment.