-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from ephemient/rs/day1
- Loading branch information
Showing
12 changed files
with
956 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Rust benchmarks | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
get-inputs: | ||
uses: ephemient/aoc2024/.github/workflows/get-inputs.yml@main | ||
secrets: | ||
SESSION: ${{ secrets.SESSION }} | ||
|
||
build: | ||
needs: [ get-inputs ] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: gh-docs | ||
path: gh-docs | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: inputs | ||
path: inputs | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
components: clippy,rustfmt | ||
cache-workspaces: rs -> target | ||
- run: cargo install cargo-criterion | ||
working-directory: rs | ||
- run: cargo criterion | ||
env: | ||
AOC2024_DATADIR: ${{ github.workspace }}/inputs | ||
working-directory: rs | ||
- run: rsync --archive --delete --verbose --whole-file target/criterion/reports/ ../gh-docs/criterion/ | ||
working-directory: rs | ||
- name: Inline Criterion benchmark results | ||
run: | | ||
cat >>gh-docs/criterion/index.html <<'EOF' | ||
<script> | ||
document.querySelectorAll('ul ul li a[href]') | ||
.forEach(a => { | ||
let b = a.getAttribute('href'); | ||
b = b.substr(0, b.lastIndexOf('/') + 1); | ||
fetch(a.href, { | ||
mode: 'same-origin', | ||
headers: { | ||
'Accept': 'text/html' | ||
} | ||
}) | ||
.then(r => r.text()) | ||
.then(t => new DOMParser().parseFromString(t, 'text/html')) | ||
.then(d => { | ||
d.querySelectorAll('.explanation').forEach(e => e.remove()); | ||
d.querySelectorAll('[src]').forEach(e => e.setAttribute('src', `${b}${e.getAttribute('src')}`)); | ||
d.querySelectorAll('[href]').forEach(e => e.setAttribute('href', `${b}${e.getAttribute('href')}`)); | ||
a.insertAdjacentElement('afterend', d.querySelector('.body')); | ||
d.querySelectorAll('style').forEach(e => document.head.append(e)); | ||
}); | ||
}); | ||
</script> | ||
EOF | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
cwd: gh-docs | ||
add: criterion | ||
message: 'Rust Criterion ${{ github.sha }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Rust CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: [ rs/** ] | ||
pull_request: | ||
branches: [ main ] | ||
paths: [ rs/** ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
get-inputs: | ||
uses: ephemient/aoc2024/.github/workflows/get-inputs.yml@main | ||
secrets: | ||
SESSION: ${{ secrets.SESSION }} | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
components: clippy,rustfmt | ||
cache-workspaces: rs -> target | ||
- run: cargo fmt -- --check | ||
working-directory: rs | ||
- run: cargo clippy -- --deny warnings | ||
working-directory: rs | ||
- run: cargo test | ||
working-directory: rs | ||
- run: cargo build --all-features --all-targets --release | ||
working-directory: rs | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: aoc2024-rs | ||
path: rs/target/release/aoc2024 | ||
|
||
run: | ||
needs: [ get-inputs, build ] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/download-artifact@v4 | ||
- run: chmod +x aoc2024-rs/aoc2024 | ||
- run: aoc2024-rs/aoc2024 | ||
env: | ||
AOC2024_DATADIR: inputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/target | ||
**/*.rs.bk |
Oops, something went wrong.