Skip to content

Commit

Permalink
ubermerge
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRawMeatball committed Apr 18, 2023
1 parent cf5fd04 commit 2b5edfa
Show file tree
Hide file tree
Showing 548 changed files with 29,650 additions and 10,199 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
@@ -1,3 +1,3 @@
# These are supported funding model platforms

github: cart
custom: https://bevyengine.org/community/donate/
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/performance_regression.md
@@ -0,0 +1,55 @@
---
name: Performance Regression
about: Bevy running slowly after upgrading? Report a performance regression.
title: ''
labels: C-Bug, C-Performance, C-Regression, S-Needs-Triage
assignees: ''
---

## Bevy version

* Original: The release number or commit hash of the version you last tested your app against.
* Current: The release number or commit hash of the version you're currently using.

## Relevant system information

Please include:

* the Rust version you're using (you can get this by running `cargo --version`)
* Bevy relies on the "latest stable release" of Rust
* nightly should generally work, but there are sometimes regressions: please let us know!
* the operating system or browser used, including its version
* e.g. Windows 10, Ubuntu 18.04, iOS 14

## What's performing poorly?

Describe how you arrived at the problem. If you can, consider providing a code snippet or link
to help reproduce the regression.

If the exact scenario is not immediately reproducible on `cargo run`, please include a set list of steps to produce the correct setup.

## Before and After Traces

To best help us investigate the regression, it's best to provide as much detailed profiling
data as possible.

If your app is running slowly, please show profiler traces before and after the change.
For more information on how to get these traces, see
<https://github.com/bevyengine/bevy/blob/main/docs/profiling.md>.

If this is about a compile-time regression, please provide the full output of `cargo build --timings`,
for more information see <https://doc.rust-lang.org/cargo/reference/timings.html>.

* Before:
* After:

## Additional information

Other information that can be used to further reproduce or isolate the problem.
This commonly includes:

* screenshots
* logs
* theories about what might be going wrong
* workarounds that you used
* links to related bugs, PRs or discussions
24 changes: 0 additions & 24 deletions .github/bors.toml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/start-mobile-example/.gitignore
@@ -0,0 +1,5 @@
node_modules/
/test-results/
/playwright-report/
/playwright/.cache/
screenshot.png
35 changes: 35 additions & 0 deletions .github/start-mobile-example/mobile.conf.js
@@ -0,0 +1,35 @@
exports.config = {
user: process.env.BROWSERSTACK_USERNAME,
key: process.env.BROWSERSTACK_ACCESS_KEY,

updateJob: false,
specs: [
'./specs/screenshot.js'
],
exclude: [],

capabilities: [{
project: "Bevy Example",
build: 'Bevy Example Runner',
name: 'run_example',
device: process.env.DEVICE || 'Samsung Galaxy S23',
os_version: process.env.OS_VERSION || "13.0",
app: process.env.BROWSERSTACK_APP_ID,
'browserstack.debug': true,
orientation: 'LANDSCAPE'
}],

logLevel: 'info',
coloredLogs: true,
screenshotPath: './screenshots/',
baseUrl: '',
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,

framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 20000
}
};

0 comments on commit 2b5edfa

Please sign in to comment.