Browse Source

Docs generator disables audio/graphics in CI;

bjorn 6 tháng trước cách đây
mục cha
commit
cc8d6f6d8a
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      api/conf.lua

+ 2 - 0
api/conf.lua

@@ -1,4 +1,6 @@
 function lovr.conf(t)
   t.audio.start = false
+  t.modules.audio = not os.getenv('CI')
+  t.modules.graphics = not os.getenv('CI')
   t.window = nil
 end