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

add gsfs support, delete a lot of dead code, integrate jaeger tracing #48

Closed
wants to merge 1 commit into from
Closed
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
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
Loading