From 0cb4ecf95ba76cc9176765003216bc4e95ffb088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Kuni=C3=9F?= Date: Wed, 27 Dec 2023 19:36:10 +0100 Subject: [PATCH] Pinned dmd and ldc versions as "latest" fails. linkrope did it too for dmd. The versino of ldc was looked up at https://github.com/ldc-developers/ldc/releases matching the version of Frontend, druntime and Phobos to that of dmd. --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 283086b..416c692 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Install D compiler uses: dlang-community/setup-dlang@v1 with: - compiler: ldc-latest + compiler: ldc-1.33.0 - name: Run build run: | @@ -52,7 +52,7 @@ jobs: - name: Install D compiler uses: dlang-community/setup-dlang@v1 with: - compiler: dmd-latest + compiler: dmd-2.103.1 - name: Check style run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57e0f07..69485e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Install D compiler uses: dlang-community/setup-dlang@v1 with: - compiler: dmd-latest + compiler: dmd-2.103.1 - name: Run tests run: | @@ -46,7 +46,7 @@ jobs: - name: Install D compiler uses: dlang-community/setup-dlang@v1 with: - compiler: ldc-latest + compiler: ldc-1.33.0 - name: Run build run: |