Skip to content

Commit

Permalink
change macos-13 job to use 2.102.2 and use default arch in builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Nov 2, 2024
1 parent ff77b55 commit ba1c34f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
## macos-13 is the latest Mac runner with Intel cpu
- { os: macos-13, compiler: dmd-latest }
- { os: macos-13, compiler: ldc-latest }
- { os: macos-13, compiler: dmd-2.101.2 }
- { os: macos-13, compiler: dmd-2.102.2 }
- { os: macos-13, compiler: ldc-1.32.2 }
exclude:
- { os: windows-latest, compiler: dmd-2.098.1 }
Expand All @@ -73,8 +73,8 @@ jobs:
# uses: WebFreak001/dub-upgrade@v0.1

# full build
- name: dub build (FULL)
run: dub build --config=full --arch=x86_64
- name: dub build (FULL) ${{ runner.arch }}
run: dub build --config=full

# x86 (Windows Only)
- name: dub test with full config (x86)
Expand All @@ -90,16 +90,16 @@ jobs:
working-directory: example
run: dub build --config=SQLite --arch=x86 && ./ddbctest --connection=sqlite:ddbc-test.sqlite

# x86_64 (all platforms)
- name: dub test with full config (x86_64)
run: dub test --config=full --arch=x86_64
# Use the default arch (either x86_64 or arm64 all platforms)
- name: dub test with full config (${{ runner.arch }})
run: dub test --config=full

#- name: dub run with test config (x86_64)
# run: dub run --config=test --arch=x86_64

- name: run the ddbctest project (x86_64)
- name: run the ddbctest project (${{ runner.arch }})
working-directory: example
run: dub build --config=SQLite --arch=x86_64 && ./ddbctest --connection=sqlite:ddbc-test.sqlite
run: dub build --config=SQLite && ./ddbctest --connection=sqlite:ddbc-test.sqlite

# x86_mscoff (Windows with dmd Only)
- name: dub test with full config (x86_mscoff)
Expand Down

0 comments on commit ba1c34f

Please sign in to comment.