Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed May 18, 2024
1 parent 08923c5 commit a8d3e81
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .github/actions/setup-d-compiler/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,24 @@ inputs:
required: true

runs:
- uses: dlang-community/setup-dlang@v1
with:
compiler: ldc-1.33.0
using: composite
steps:
- uses: dlang-community/setup-dlang@v1
with:
compiler: ldc-1.33.0

- if: inputs.target-triple == 'aarch64-linux-gnu'
name: "Set-up AArch64-linux cross-compiler."
uses: ./.github/actions/target-aarch64-linux-gnu
- if: inputs.target-triple == 'aarch64-linux-gnu'
name: "Set-up AArch64-linux cross-compiler."
uses: ./.github/actions/target-aarch64-linux-gnu

- if: inputs.target-triple == 'arm64-apple-macos'
name: "Set-up ARM64-macOS cross-compiler."
uses: ./.github/actions/target-arm64-apple-macos
- if: inputs.target-triple == 'arm64-apple-macos'
name: "Set-up ARM64-macOS cross-compiler."
uses: ./.github/actions/target-arm64-apple-macos

- if: inputs.target-triple == 'x86_64-apple-darwin'
name: "Set-up x86_64-macOS cross-compiler."
uses: ./.github/actions/target-x86_64-apple-darwin
- if: inputs.target-triple == 'x86_64-apple-darwin'
name: "Set-up x86_64-macOS cross-compiler."
uses: ./.github/actions/target-x86_64-apple-darwin

- if: inputs.target-triple == 'x86_64-windows-msvc'
name: "Set-up x86_64-windows cross-compiler."
uses: ./.github/actions/target-x86_64-windows-msvc
- if: inputs.target-triple == 'x86_64-windows-msvc'
name: "Set-up x86_64-windows cross-compiler."
uses: ./.github/actions/target-x86_64-windows-msvc

0 comments on commit a8d3e81

Please sign in to comment.