Add Godot 3.x ignores to the .gitignore file
parent
0d7da02dc4
commit
91fcde48d4
|
@ -103,7 +103,7 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
linux-cmake:
|
linux-cmake:
|
||||||
name: Build (Linux, GCC, CMake)
|
name: 🐧 Build (Linux, GCC, CMake)
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -127,7 +127,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
|
|
||||||
linux-cmake-ninja:
|
linux-cmake-ninja:
|
||||||
name: Build (Linux, GCC, CMake Ninja)
|
name: 🐧 Build (Linux, GCC, CMake Ninja)
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -151,7 +151,7 @@ jobs:
|
||||||
cmake --build . -j $(nproc)
|
cmake --build . -j $(nproc)
|
||||||
|
|
||||||
windows-msvc-cmake:
|
windows-msvc-cmake:
|
||||||
name: Build (Windows, MSVC, CMake)
|
name: 🏁 Build (Windows, MSVC, CMake)
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -170,7 +170,7 @@ jobs:
|
||||||
cmake --build .
|
cmake --build .
|
||||||
|
|
||||||
static-checks:
|
static-checks:
|
||||||
name: Static Checks (clang-format)
|
name: 📊 Static Checks (clang-format)
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
.godot/
|
.godot/
|
||||||
/gen/
|
/gen/
|
||||||
|
|
||||||
|
# Godot 3.x ignores
|
||||||
|
include/gen
|
||||||
|
src/gen
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
logs/*
|
logs/*
|
||||||
*.log
|
*.log
|
||||||
|
|
Loading…
Reference in New Issue