From 2d35d0e995da51caf62600555758baf3eacea11f Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Mon, 10 Jun 2024 21:09:36 +0200 Subject: [PATCH] CI: Remove workaround (`dmd` in PATH, a symlink to ldmd2) (#584) --- .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 }}