Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
gskorokhod committed Nov 2, 2023
2 parents 95b83f1 + 5cdb63d commit 04424fa
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@ updates:
assignees:
- "ozgurakgun"

- package-ecosystem: "pip"
directory: "/tools/essence-feature-usage-stats/"
schedule:
interval: "weekly"
assignees:
- "ozgurakgun"

105 changes: 105 additions & 0 deletions .github/workflows/doc-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
name: 'Info: Documentation Coverage'
on:
push:
pull_request:
workflow_dispatch:

jobs:
minion:
name: 'Minion'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2


- name: Get minion hash for cache invalidation
id: minion-cache
run: |
echo "minion_sha=$(git rev-parse HEAD:solvers/minion/vendor)" >> "$GITHUB_OUTPUT"
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
solvers/minion/vendor
key: nightly-${{ runner.os }}-minion-${{ steps.minion-cache.outputs.minion_sha }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: nightly-${{ runner.os }}-minion-${{ steps.minion-cache.outputs.minion_sha}}-cargo-

- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
working-directory: ./solvers/minion
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
RUSTDOCFLAGS='-Z unstable-options --show-coverage' cargo doc | tee -a /dev/fd/2 >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
chuffed:
name: 'Chuffed'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Get chuffed hash for cache invalidation
id: chuffed-cache
run: |
echo "chuffed_sha=$(git rev-parse HEAD:solvers/chuffed/vendor)" >> "$GITHUB_OUTPUT"
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
solvers/chuffed/vendor
key: nightly-${{ runner.os }}-chuffed-${{ steps.chuffed-cache.outputs.chuffed_sha }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# match chuffed exactly, cargo inexactly
restore-keys: nightly-${{ runner.os }}-chuffed-${{ steps.chuffed-cache.outputs.chuffed_sha}}-cargo-

- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
working-directory: ./solvers/chuffed
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
RUSTDOCFLAGS='-Z unstable-options --show-coverage' cargo doc | tee -a /dev/fd/2 >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
conjure-oxide:
name: 'Conjure Oxide'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
~/solvers/minion/vendor
~/solvers/chuffed/vendor
target/
key: nightly-conjureoxide-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: nightly-conjureoxide-${{ runner.os }}-cargo

- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
RUSTDOCFLAGS='-Z unstable-options --show-coverage' cargo doc | tee -a /dev/fd/2 >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
1 change: 0 additions & 1 deletion .github/workflows/essence-feature-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
with:
branch: gh-pages
folder: ./tools/essence-feature-usage-stats/web/static
ssh-key: ${{ secrets.DEPLOY_KEY }}
target-folder: tools/essence-feature-usage-stats
commit-message: "Actions: Deploy the essence features usage table 🚀"

1 change: 0 additions & 1 deletion .github/workflows/minion-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ jobs:
run: cargo test -- --test-threads=1






0 comments on commit 04424fa

Please sign in to comment.