浏览代码

Merge pull request #833 from aaronfranke/gitignore

Rémi Verschelde 2 年之前
父节点
当前提交
204e504d68
共有 2 个文件被更改,包括 8 次插入4 次删除
  1. 4 4
      .github/workflows/ci.yml
  2. 4 0
      .gitignore

+ 4 - 4
.github/workflows/ci.yml

@@ -103,7 +103,7 @@ jobs:
           if-no-files-found: error
 
   linux-cmake:
-    name: Build (Linux, GCC, CMake)
+    name: 🐧 Build (Linux, GCC, CMake)
     runs-on: ubuntu-18.04
     steps:
       - name: Checkout
@@ -127,7 +127,7 @@ jobs:
           make -j $(nproc)
 
   linux-cmake-ninja:
-    name: Build (Linux, GCC, CMake Ninja)
+    name: 🐧 Build (Linux, GCC, CMake Ninja)
     runs-on: ubuntu-18.04
     steps:
       - name: Checkout
@@ -151,7 +151,7 @@ jobs:
           cmake --build . -j $(nproc)
 
   windows-msvc-cmake:
-    name: Build (Windows, MSVC, CMake)
+    name: 🏁 Build (Windows, MSVC, CMake)
     runs-on: windows-2019
     steps:
       - name: Checkout
@@ -170,7 +170,7 @@ jobs:
           cmake --build .
 
   static-checks:
-    name: Static Checks (clang-format)
+    name: 📊 Static Checks (clang-format)
     runs-on: ubuntu-20.04
     steps:
       - name: Checkout

+ 4 - 0
.gitignore

@@ -4,6 +4,10 @@
 .godot/
 /gen/
 
+# Godot 3.x ignores
+include/gen
+src/gen
+
 # Misc
 logs/*
 *.log