-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into lucas/kittest_state
# Conflicts: # crates/egui_kittest/src/app_kind.rs # crates/egui_kittest/src/builder.rs # crates/egui_kittest/src/lib.rs
- Loading branch information
Showing
102 changed files
with
1,685 additions
and
1,427 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* text=auto eol=lf | ||
Cargo.lock linguist-generated=false | ||
**/tests/snapshots/**/*.png filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
# The icon.png is needed when including eframe via git, so it may not be in lfs | ||
crates/eframe/data/* !filter !diff !merge text=auto eol=lf |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: All; .png on git LFS | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
check-binary-files: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check that png files are on git LFS | ||
run: | | ||
binary_extensions="png" | ||
exclude="crates/eframe/data" | ||
# Find binary files that are not tracked by Git LFS | ||
for ext in $binary_extensions; do | ||
if comm -23 <(git ls-files | grep -v "^$exclude" | sort) <(git lfs ls-files -n | sort) | grep "\.${ext}$"; then | ||
echo "Error: Found binary file with extension .$ext not tracked by git LFS. See CONTRIBUTING.md" | ||
exit 1 | ||
fi | ||
done |
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,7 +18,7 @@ jobs: | |
|
||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
|
||
- name: Install packages (Linux) | ||
if: runner.os == 'Linux' | ||
|
@@ -83,7 +83,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
targets: wasm32-unknown-unknown | ||
|
||
- run: sudo apt-get update && sudo apt-get install libgtk-3-dev libatk1.0-dev | ||
|
@@ -103,7 +103,7 @@ jobs: | |
- name: wasm-bindgen | ||
uses: jetli/[email protected] | ||
with: | ||
version: "0.2.93" | ||
version: "0.2.95" | ||
|
||
- run: ./scripts/wasm_bindgen_check.sh --skip-setup | ||
|
||
|
@@ -155,7 +155,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
rust-version: "1.76.0" | ||
rust-version: "1.77.0" | ||
log-level: error | ||
command: check | ||
arguments: --target ${{ matrix.target }} | ||
|
@@ -170,7 +170,7 @@ jobs: | |
|
||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
targets: aarch64-linux-android | ||
|
||
- name: Set up cargo cache | ||
|
@@ -189,7 +189,7 @@ jobs: | |
|
||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
targets: aarch64-apple-ios | ||
|
||
- name: Set up cargo cache | ||
|
@@ -208,7 +208,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
|
||
- name: Set up cargo cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
@@ -232,7 +232,7 @@ jobs: | |
lfs: true | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.76.0 | ||
toolchain: 1.77.0 | ||
|
||
- name: Set up cargo cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
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.