Skip to content

Commit

Permalink
Merge branch 'RELEASE' into STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Jul 27, 2023
2 parents dc7c0b2 + 76f35fd commit 96430df
Show file tree
Hide file tree
Showing 16,812 changed files with 4,502,685 additions and 1,117,364 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

linux_static:
name: Clang Static Analyser
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
Expand Down
37 changes: 35 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on: [push]

jobs:
windows:
name: Windows Latest MSVC
name: Windows Latest MSVC - Ninja
runs-on: windows-latest
strategy:
fail-fast: true
Expand Down Expand Up @@ -87,9 +87,42 @@ jobs:
# name: BRLCAD_Windows
# path: ${{ github.workspace }}/build/BRL-CAD*exe

windows_std_tools:
name: Windows Latest MSVC - Standard Tools
runs-on: windows-latest
strategy:
fail-fast: true
steps:
- name: Setup - CMake
uses: lukka/get-cmake@latest

- name: Checkout
uses: actions/checkout@v3

- name: Add github workspace to path
# https://github.saobby.my.eu.orgmunity/t/deprecated-add-path/136621
run: echo "$ENV{GITHUB_WORKSPACE}" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8

- name: Configure
run: |
cmake -S . -B build -D ENABLE_ALL=ON
# We do the following in order to help ensure files are "flushed"
# to disk before compilation is attempted
# https://superuser.com/a/1553374/1286142
powershell Write-VolumeCache C
powershell Write-VolumeCache D
# At least for the moment, the main idea for this particular test is to try and
# verify multi-config building is working as expected - to shorten build times
# but still have a test of the key components, just build MGED
- name: Build
run: |
cmake --build build --config Debug --target mged
cmake --build build --config Release --target mged
linux:
name: Ubuntu Latest GCC
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
Expand Down
80 changes: 0 additions & 80 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

12 changes: 12 additions & 0 deletions BUGS
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ on-going issues.
Recent Bugs
-----------

* MGED crashes trying to open the repository file
doc/docbook/resources/other/standard/xsl/images/important.tif
It is mis-identified as a v4 .g file due to the file header's
first character matching the v4 .g first character.

* MGED on Mac hides the main command window on File->Open when you
cancel the open. Presumably the withdraw is somehow getting routed
to the window and not just the open dialog.

* running pkgIndex and/or mkIndex during build appears to be randomly
crashing on Mac using bundled libs

* garbage_collect -c wipes out custom attributes on _GLOBAL
> attr set _GLOBAL foo bar
> garbage_collect -c
Expand Down
Loading

0 comments on commit 96430df

Please sign in to comment.