From ca9bcd6241c2b89afb2e633911407abb1e00706d Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Sat, 8 Jun 2024 13:33:50 +0200 Subject: [PATCH] CI: Remove workaround (`dmd` in PATH, a symlink to ldmd2) --- .github/workflows/build_release_template.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/build_release_template.yml b/.github/workflows/build_release_template.yml index 63a419e2..9a6e1789 100644 --- a/.github/workflows/build_release_template.yml +++ b/.github/workflows/build_release_template.yml @@ -233,16 +233,6 @@ jobs: export LDC_VSDIR='C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise' fi - # Workaround: Provide ldmd2 as dmd replacement as some tools assume DMD is present: - mkdir .pathext - ln -s "$(which ldmd2)" .pathext/dmd - if [[ "${{ matrix.target }}" == "windows" ]] - then - PATH="$PATH;$PWD/.pathext" - else - PATH="$PATH:$PWD/.pathext" - fi - # Build the release ./build_all --targets=${{ matrix.target }} "v$LDC" ${{ inputs.release_branch }}