Skip to content

Commit 96430df

Browse files
committed
Merge branch 'RELEASE' into STABLE
2 parents dc7c0b2 + 76f35fd commit 96430df

File tree

16,812 files changed

+4502685
-1117364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

16,812 files changed

+4502685
-1117364
lines changed

.github/workflows/analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
linux_static:
1010
name: Clang Static Analyser
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: true
1414
steps:

.github/workflows/check.yml

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ on: [push]
3333

3434
jobs:
3535
windows:
36-
name: Windows Latest MSVC
36+
name: Windows Latest MSVC - Ninja
3737
runs-on: windows-latest
3838
strategy:
3939
fail-fast: true
@@ -87,9 +87,42 @@ jobs:
8787
# name: BRLCAD_Windows
8888
# path: ${{ github.workspace }}/build/BRL-CAD*exe
8989

90+
windows_std_tools:
91+
name: Windows Latest MSVC - Standard Tools
92+
runs-on: windows-latest
93+
strategy:
94+
fail-fast: true
95+
steps:
96+
- name: Setup - CMake
97+
uses: lukka/get-cmake@latest
98+
99+
- name: Checkout
100+
uses: actions/checkout@v3
101+
102+
- name: Add github workspace to path
103+
# https://github.community/t/deprecated-add-path/136621
104+
run: echo "$ENV{GITHUB_WORKSPACE}" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
105+
106+
- name: Configure
107+
run: |
108+
cmake -S . -B build -D ENABLE_ALL=ON
109+
# We do the following in order to help ensure files are "flushed"
110+
# to disk before compilation is attempted
111+
# https://superuser.com/a/1553374/1286142
112+
powershell Write-VolumeCache C
113+
powershell Write-VolumeCache D
114+
115+
# At least for the moment, the main idea for this particular test is to try and
116+
# verify multi-config building is working as expected - to shorten build times
117+
# but still have a test of the key components, just build MGED
118+
- name: Build
119+
run: |
120+
cmake --build build --config Debug --target mged
121+
cmake --build build --config Release --target mged
122+
90123
linux:
91124
name: Ubuntu Latest GCC
92-
runs-on: ubuntu-20.04
125+
runs-on: ubuntu-latest
93126
strategy:
94127
fail-fast: true
95128
steps:

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

BUGS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ on-going issues.
1515
Recent Bugs
1616
-----------
1717

18+
* MGED crashes trying to open the repository file
19+
doc/docbook/resources/other/standard/xsl/images/important.tif
20+
It is mis-identified as a v4 .g file due to the file header's
21+
first character matching the v4 .g first character.
22+
23+
* MGED on Mac hides the main command window on File->Open when you
24+
cancel the open. Presumably the withdraw is somehow getting routed
25+
to the window and not just the open dialog.
26+
27+
* running pkgIndex and/or mkIndex during build appears to be randomly
28+
crashing on Mac using bundled libs
29+
1830
* garbage_collect -c wipes out custom attributes on _GLOBAL
1931
> attr set _GLOBAL foo bar
2032
> garbage_collect -c

0 commit comments

Comments
 (0)