-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* less string clones in node lookups * add public interface for disk merge and start testing * more tests * actually write all the benchmark results again * clean up debug output and fix merging bugs * move DiskGraph struct up one level * Expose the merge method to python * update storage * fix the features * add graph_dir method to DiskGraph * update submodule * minor fixes * try to stop the 143 failures * fix the workflow * more workflow tweaks * verbose output * does older ubuntu have the same problem? * update submodule * update submodule * update submodule * update submodule * update submodule * try to fix linker running out of memory * install lld * try to get protoc on readthedocs
- Loading branch information
1 parent
0d45309
commit a9fe913
Showing
40 changed files
with
721 additions
and
507 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
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 |
---|---|---|
|
@@ -18,9 +18,9 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- os: macos-latest | ||
- os: ubuntu-20.04 | ||
- os: windows-latest | ||
- { os: macos-latest, flags: "" } | ||
- { os: ubuntu-20.04, flags: "-C link-arg=-fuse-ld=lld" } | ||
- { os: windows-latest, flags: "" } | ||
steps: | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
name: Xcode version | ||
|
@@ -43,6 +43,10 @@ jobs: | |
sudo rm -rf /usr/local/lib/android | ||
sudo rm -rf /opt/ghc | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
- name: Install LLD | ||
if: "contains(matrix.os, 'ubuntu')" | ||
run: | | ||
sudo apt-get install lld | ||
- uses: webfactory/[email protected] | ||
name: Load pometry-storage key | ||
with: | ||
|
@@ -56,14 +60,14 @@ jobs: | |
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
- name: Activate pometry-storage in Cargo.toml | ||
run: make pull-storage | ||
- name: Run all Tests (disk_graph) | ||
env: | ||
RUSTFLAGS: -Awarnings | ||
RUSTFLAGS: -Awarnings ${{ matrix.flags }} | ||
TEMPDIR: ${{ runner.temp }} | ||
run: | | ||
cargo nextest run --all --no-default-features --features "storage" | ||
|
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
Submodule pometry-storage-private
updated
from 45f16d to 88d24c
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
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
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
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
Oops, something went wrong.