Skip to content

Commit b446848

Browse files
authored
Bundle package VS fix - Poco / Assimp (fix build folder and copy debug) (#511)
* Actions just VS * Poco - Full static and fix Build folder for split else bugs * Default to MT not MD * Actions out if artifacts false * assimp copy folders * calculate form and packages for bundled builds * Cmake MT/MD in core * calculate variable fix * more calculate fixes for local builds
1 parent f5057ac commit b446848

20 files changed

+190
-99
lines changed

.github/workflows/build-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
NO_FORCE: 1
1414
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1515
USE_ARTIFACT: true
16-
DISABLE_WORKFLOW: "false"
16+
DISABLE_WORKFLOW: "true"
1717

1818
concurrency:
1919
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build-emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
USE_ARTIFACT: true
1919
PTHREADS_ENABLED: 1
2020
NO_FORCE: 1
21-
DISABLE_WORKFLOW: "false"
21+
DISABLE_WORKFLOW: "true"
2222

2323
jobs:
2424
pre-check:

.github/workflows/build-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: true
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-linux-cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: false
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-linux64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: true
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: true
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: false
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-tvos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NO_FORCE: 1
1818
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
1919
USE_ARTIFACT: true
20-
DISABLE_WORKFLOW: "false"
20+
DISABLE_WORKFLOW: "true"
2121

2222
jobs:
2323
pre-check:

.github/workflows/build-vs2019-x64.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
NO_FORCE: 1
1919
VS_VER: 16
2020
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
21-
USE_ARTIFACT: true
21+
USE_ARTIFACT: false
2222
DISABLE_WORKFLOW: "false"
2323

2424
jobs:
@@ -183,6 +183,7 @@ jobs:
183183
rm -f xout/*.tar.bz2
184184
rm -f out/*.tar.bz2
185185
- name: List output directory1
186+
if: env.USE_ARTIFACT == 'true'
186187
run: ls -lah out/
187188
- name: Build64
188189
working-directory: ${{env.GITHUB_WORKSPACE}}

.github/workflows/build-vs2022-arm64.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
NO_FORCE: 1
1919
VS_VER: 17
2020
GA_CI_SECRET: ${{ secrets.CI_SECRET }}
21-
USE_ARTIFACT: true
21+
USE_ARTIFACT: false
2222
DISABLE_WORKFLOW: "false"
2323

2424
jobs:
@@ -184,6 +184,7 @@ jobs:
184184
rm -f xout/*.tar.bz2
185185
rm -f out/*.tar.bz2
186186
- name: List output directory1
187+
if: env.USE_ARTIFACT == 'true'
187188
run: ls -lah out/
188189
- name: BuildARM64
189190
working-directory: ${{env.GITHUB_WORKSPACE}}

0 commit comments

Comments
 (0)