Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actions exclude dmd macOS latest #947

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
dmd: gdc-12
host: macos-latest

# Restrict DMD to macOS latest
- compiler:
dmd: dmd
host: macos-latest
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it works on macos-13, can you add that to the include action?


# Omit dub builds for GDC because dub rejects the old fronted revision
- compiler:
dmd: gdc-12
Expand All @@ -65,12 +70,19 @@ jobs:
include:
- { do_report: 1, build: { type: dub, version: 'current' }, host: 'ubuntu-22.04', compiler: { version: dmd-latest, dmd: dmd } }

- compiler:
dmd: dmd
host: macos-13
build:
type: 'dub'
version: 'current'

runs-on: ${{ matrix.host }}

steps:
# Clone repo + submodules
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down Expand Up @@ -153,7 +165,7 @@ jobs:

# Parse phobos to check for failures / crashes / ...
- name: Checkout Phobos
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: dlang/phobos
path: phobos
Expand Down
Loading