Skip to content

Commit

Permalink
test-sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin committed Nov 7, 2023
1 parent 63f2cf7 commit 7bc2dd0
Showing 1 changed file with 66 additions and 66 deletions.
132 changes: 66 additions & 66 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,45 @@ permissions:
contents: write

jobs:
quick-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
- name: Check Type
run: cargo fmt -- --check
- name: Check Clippy
run: cargo clippy -- -Dwarnings
- name: Run internal tests
run: cargo test --verbose -- --nocapture
- name: Build
run: cargo build
# quick-tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - uses: actions-rs/[email protected]
# with:
# toolchain: stable
# override: true
# - name: Check Type
# run: cargo fmt -- --check
# - name: Check Clippy
# run: cargo clippy -- -Dwarnings
# - name: Run internal tests
# run: cargo test --verbose -- --nocapture
# - name: Build
# run: cargo build

build:
needs: quick-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
- name: Build docs
run: cargo doc
- name: Move documentation
run: mkdir -p pages/doc && mv target/doc/* pages/doc/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./pages
# build:
# needs: quick-tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - uses: actions-rs/[email protected]
# with:
# toolchain: stable
# override: true
# - name: Build docs
# run: cargo doc
# - name: Move documentation
# run: mkdir -p pages/doc && mv target/doc/* pages/doc/
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# if: ${{ github.ref == 'refs/heads/master' }}
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./pages

bench:
needs: build
# needs: build
runs-on: raspbian-armv7-kernel-5.10.33
steps:
- uses: actions/checkout@master
Expand All @@ -53,11 +53,11 @@ jobs:
# toolchain: stable
# override: true
- uses: dtolnay/rust-toolchain@stable
# - name: Rust | Cache
# uses: Swatinem/rust-cache@v2
# with:
# prefix-key: "rust-cache"
# shared-key: "benchmark"
- name: Rust | Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-cache"
shared-key: "benchmark"
- name: Cargo Bench
run: cargo bench --jobs 1 --bench bench -- --output-format bencher | tee output.txt
- name: Compare results & store cached results
Expand Down Expand Up @@ -93,28 +93,28 @@ jobs:
git commit -m "Update benchmark-data file"
git push origin gh-pages
deploy:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout to repository
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
- name: Install cargo-bump
run: cargo install cargo-bump --force
- name: Modify version with tag
run: cargo bump ${{ github.ref_name }}
- name: Automatic commit for crate version upgrade
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: master
commit_message: "Cargo: Update the crate version to ${{ github.ref_name }}"
- name: Publish to crates.io
uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
# deploy:
# needs: build
# runs-on: ubuntu-latest
# if: startsWith(github.ref, 'refs/tags/')
# steps:
# - name: Checkout to repository
# uses: actions/checkout@v2
# - name: Setup Rust toolchain
# uses: actions-rs/[email protected]
# with:
# toolchain: stable
# override: true
# - name: Install cargo-bump
# run: cargo install cargo-bump --force
# - name: Modify version with tag
# run: cargo bump ${{ github.ref_name }}
# - name: Automatic commit for crate version upgrade
# uses: stefanzweifel/git-auto-commit-action@v4
# with:
# branch: master
# commit_message: "Cargo: Update the crate version to ${{ github.ref_name }}"
# - name: Publish to crates.io
# uses: katyo/publish-crates@v1
# with:
# registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit 7bc2dd0

Please sign in to comment.