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

Performance: 'Minimal' layout mode #369

Merged
merged 13 commits into from
Feb 26, 2019
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
9 changes: 9 additions & 0 deletions .ci/esy-bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Run benchmarks

steps:
- script: esy @bench install
displayName: 'esy @bench install'
- script: esy @bench build
displayName: 'esy @bench build'
- script: esy @bench x ReveryBench
displayName: 'esy @bench x ReveryBench'
4 changes: 4 additions & 0 deletions .ci/esy-check-hygiene.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ steps:
displayName: 'esy install'
- script: git diff --exit-code
displayName: 'check that `esy.lock` is up-to-date. If this fails, commit `esy.lock` changes and re-submit PR.'
- script: esy @bench install
displayName: 'esy @bench install'
- script: git diff --exit-code
displayName: 'check that `bench.esy.lock` is up-to-date. If this fails, commit `bench.esy.lock` changes and re-submit PR.'
- script: esy build
displayName: 'esy build'
- script: esy format
Expand Down
7 changes: 7 additions & 0 deletions ReveryBench.opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
opam-version: "1.2"
version: "dev"
maintainer: "bryphe@outlook.com"
author: ["Bryan Phelps"]
build: [

]
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- template: .ci/use-node.yml
- template: .ci/restore-build-cache.yml
- template: .ci/esy-build-steps.yml
- template: .ci/esy-bench.yml
- template: .ci/publish-release.yml
- template: .ci/create-docs.yml
- template: .ci/publish-build-cache.yml
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
- template: .ci/use-node.yml
- template: .ci/restore-build-cache.yml
- template: .ci/esy-build-steps.yml
- template: .ci/esy-bench.yml
- template: .ci/publish-release.yml
- template: .ci/publish-build-cache.yml

Expand All @@ -84,5 +86,6 @@ jobs:
- template: .ci/use-node.yml
- template: .ci/restore-build-cache.yml
- template: .ci/esy-build-steps.yml
- template: .ci/esy-bench.yml
- template: .ci/publish-release.yml
- template: .ci/publish-build-cache.yml
3 changes: 3 additions & 0 deletions bench.esy.lock/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Set eol to LF so files aren't converted to CRLF-eol on Windows.
* text eol=lf
3 changes: 3 additions & 0 deletions bench.esy.lock/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Reset any possible .gitignore, we want all esy.lock to be un-ignored.
!*
Loading