Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RyeMutt committed Jun 23, 2024
1 parent 448a897 commit 440ea34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:
push:
branches: ["main", "release/*", "project/*"]
tags: ["Second_Life*"]
tags: ["Alchemy*"]

jobs:
# The whole point of the setvar job is that we want to set a variable once
Expand All @@ -27,7 +27,7 @@ jobs:
# When you want to use a string variable as a workflow YAML boolean, it's
# important to ensure it's the empty string when false. If you omit || '',
# its value when false is "false", which is interpreted as true.
RELEASE_RUN: ${{ (github.event.inputs.release_run || github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life')) && 'Y' || '' }}
RELEASE_RUN: ${{ (github.event.inputs.release_run || github.ref_type == 'tag' && startsWith(github.ref_name, 'Alchemy')) && 'Y' || '' }}
steps:
- name: Set Variable
id: setvar
Expand All @@ -39,7 +39,7 @@ jobs:
needs: setvar
strategy:
matrix:
runner: [windows-large, macos-12-xl]
runner: [ubuntu-22.04]
configuration: [Release]
Linden: [true]

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ pre_build()

"$autobuild" configure --quiet -c $variant \
${eval_autobuild_configure_parameters:---} \
-DLL_TESTS:BOOL=ON \
-DLL_TESTS:BOOL=OFF \
-DPACKAGE:BOOL=ON \
-DHAVOK_TPV:BOOL="$HAVOK" \
-DRELEASE_CRASH_REPORTING:BOOL="$RELEASE_CRASH_REPORTING" \
Expand Down

0 comments on commit 440ea34

Please sign in to comment.