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

First Draft of Implementing PCFS #20

Merged
merged 12 commits into from
Jan 14, 2025
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
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.deb
path: installer-scripts/unix/sprig_0.0.6_amd64.deb
path: installer-scripts/unix/sprig_0.0.8_amd64.deb
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.rpm
path: installer-scripts/unix/sprig-0.0.6-1.x86_64.rpm
path: installer-scripts/unix/sprig-0.0.8-1.x86_64.rpm
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.apk
path: installer-scripts/unix/sprig_0.0.6_x86_64.apk
path: installer-scripts/unix/sprig_0.0.8_x86_64.apk
- uses: actions/upload-artifact@v4
with:
name: sprig_unix_amd64.pkg.tar.zst
path: installer-scripts/unix/sprig-0.0.6-1-x86_64.pkg.tar.zst
path: installer-scripts/unix/sprig-0.0.8-1-x86_64.pkg.tar.zst
- uses: actions/upload-artifact@v4
with:
name: sprig-target-directory-unix
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
run: rustup update stable
- name: Run Nextest
run: cargo nextest run
env:
RUST_BACKTRACE: full
doc-test:
name: Run doc tests
strategy:
Expand All @@ -82,4 +84,6 @@ jobs:
- name: Install Rust
run: rustup update stable
- name: Run Doc Tests
run: cargo test --doc
run: cargo test --doc
env:
RUST_BACKTRACE: full
Loading
Loading