forked from bevyengine/bevy
-
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 bevyengine#166 from BD103/linear-rgba-everywhere
Resolve merge conflicts in `lienar-rgba-everywhere`
- Loading branch information
Showing
449 changed files
with
15,190 additions
and
5,524 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This action installs a few dependencies necessary to build Bevy on Linux. By default it installs | ||
# alsa and udev, but can be configured depending on which libraries are needed: | ||
# | ||
# ``` | ||
# - uses: ./.github/actions/install-linux-deps | ||
# with: | ||
# alsa: false | ||
# wayland: true | ||
# ``` | ||
# | ||
# See the `inputs` section for all options and their defaults. Note that you must checkout the | ||
# repository before you can use this action. | ||
# | ||
# This action will only install dependencies when the current operating system is Linux. It will do | ||
# nothing on any other OS (MacOS, Windows). | ||
|
||
name: Install Linux dependencies | ||
description: Installs the dependencies necessary to build Bevy on Linux. | ||
inputs: | ||
alsa: | ||
description: Install alsa (libasound2-dev) | ||
required: false | ||
default: true | ||
udev: | ||
description: Install udev (libudev-dev) | ||
required: false | ||
default: true | ||
wayland: | ||
description: Install Wayland (libwayland-dev) | ||
required: false | ||
default: false | ||
xkb: | ||
description: Install xkb (libxkbcommon-dev) | ||
required: false | ||
default: false | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install Linux dependencies | ||
shell: bash | ||
if: ${{ runner.os == 'linux' }} | ||
run: > | ||
sudo apt-get update | ||
sudo apt-get install --no-install-recommends | ||
${{ fromJSON(inputs.alsa) && 'libasound2-dev' || '' }} | ||
${{ fromJSON(inputs.udev) && 'libudev-dev' || '' }} | ||
${{ fromJSON(inputs.wayland) && 'libwayland-dev' || '' }} | ||
${{ fromJSON(inputs.xkb) && 'libxkbcommon-dev' || '' }} |
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ on: | |
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
NIGHTLY_TOOLCHAIN: nightly | ||
|
||
jobs: | ||
build-for-iOS: | ||
|
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.