mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
Fix Bugzilla 24407 - OSX: ld: Assertion failed: (slot < _sideTableBuffer.size()), function addAtom
This commit is contained in:
parent
985f64ba03
commit
65db10cf92
1 changed files with 9 additions and 7 deletions
16
.github/workflows/main.yml
vendored
16
.github/workflows/main.yml
vendored
|
@ -51,10 +51,12 @@ jobs:
|
||||||
# macOS
|
# macOS
|
||||||
- job_name: macOS 13 x64, DMD (latest)
|
- job_name: macOS 13 x64, DMD (latest)
|
||||||
os: macos-13
|
os: macos-13
|
||||||
host_dmd: dmd
|
# FIXME: Revert this back to "dmd" after 2.107.1 is released.
|
||||||
|
host_dmd: ldc
|
||||||
- job_name: macOS 13 x64, DMD (coverage)
|
- job_name: macOS 13 x64, DMD (coverage)
|
||||||
os: macos-13
|
os: macos-13
|
||||||
host_dmd: dmd
|
# FIXME: Revert this back to "dmd" after 2.107.1 is released.
|
||||||
|
host_dmd: ldc
|
||||||
coverage: true
|
coverage: true
|
||||||
- job_name: macOS 12 x64, DMD (bootstrap)
|
- job_name: macOS 12 x64, DMD (bootstrap)
|
||||||
os: macos-12
|
os: macos-12
|
||||||
|
@ -101,12 +103,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
arch: ${{ env.MODEL == '64' && 'x64' || 'x86' }}
|
arch: ${{ env.MODEL == '64' && 'x64' || 'x86' }}
|
||||||
|
|
||||||
# FIXME: starting with Xcode 15:
|
# NOTE: Linker ICEs with Xcode 15.0.1 (default version on macos-13)
|
||||||
# * https://issues.dlang.org/show_bug.cgi?id=24137
|
# * https://issues.dlang.org/show_bug.cgi?id=24407
|
||||||
# * https://issues.dlang.org/show_bug.cgi?id=24399
|
# Remove this step if the default gets changed to 15.1 in actions/runner-images.
|
||||||
- name: 'macOS 13: Switch to Xcode v14'
|
- name: 'macOS 13: Switch to Xcode v15.1'
|
||||||
if: matrix.os == 'macos-13'
|
if: matrix.os == 'macos-13'
|
||||||
run: sudo xcode-select -switch /Applications/Xcode_14.3.1.app
|
run: sudo xcode-select -switch /Applications/Xcode_15.1.app
|
||||||
|
|
||||||
- name: 'Posix: Install host compiler'
|
- name: 'Posix: Install host compiler'
|
||||||
if: runner.os != 'Windows'
|
if: runner.os != 'Windows'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue