Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cfe9cf5..b2d90fe 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,11 +6,11 @@ on:
linux:
type: boolean
description: Linux (GCC)
- default: true
+ default: false
linux_clang:
type: boolean
description: Linux (Clang)
- default: false
+ default: true
windows:
type: boolean
description: Windows
@@ -133,7 +133,7 @@ jobs:
build_linux:
name: Build OpenStarbound Linux x86_64
runs-on: ubuntu-22.04
- if: ${{ (github.event_name != 'workflow_dispatch') || (inputs.linux == true) }}
+ if: ${{ (github.event_name != 'pull_request') || (inputs.linux == true) }}
env:
VCPKG_BINARY_SOURCES: clear;files,${{ github.workspace }}/vcpkg_cache,readwrite
steps:
@@ -220,7 +220,7 @@ jobs:
build_linux_clang:
name: Build OpenStarbound Linux Clang x86_64
runs-on: ubuntu-22.04
- if: ${{ (github.event_name != 'pull_request') && (inputs.linux_clang == true) }}
+ if: ${{ (github.event_name != 'workflow_dispatch') && (inputs.linux_clang == true) }}
env:
CC: clang
CXX: clang++