Skip to content

Commit

Permalink
Add back support for Windows 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Mar 28, 2024
1 parent 0751e3c commit 5fff7b9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ jobs:
host: windows-latest
target_triple: x86_64-pc-windows-msvc

# - compiler: dmd-latest
# llvm: '15.0.7'
# arch: x86
# data:
# os:
# host: windows-latest
# target_triple: x86-pc-windows-msvc
- compiler: dmd-latest
llvm: '15.0.7'
arch: x86
data:
os:
host: windows-latest
target_triple: x86-pc-windows-msvc

steps:
- name: Clone Repository
Expand Down Expand Up @@ -156,15 +156,15 @@ jobs:
llvm:
- '15.0.7'

# include:
# - compiler: ldc-latest
# llvm: '15.0.7'
# arch: x86
# data:
# os:
# host: windows-latest
# target_triple: x86-pc-windows-msvc
# release_platform: windows-x86
include:
- compiler: ldc-latest
llvm: '15.0.7'
arch: x86
data:
os:
host: windows-latest
target_triple: x86-pc-windows-msvc
release_platform: windows-x86

steps:
- name: Clone Repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/support/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ runs:
if: runner.os != 'Windows'
shell: bash
run: |
curl -f -L -o llvm.tar.xz --retry 3 'https://github.com/jacob-carlborg/clang-builder/releases/download/v${{ inputs.llvm }}%2B0.0.2-rc2/llvm-${{ inputs.llvm }}-${{ inputs.target_triple }}.tar.xz'
curl -f -L -o llvm.tar.xz --retry 3 'https://github.com/jacob-carlborg/clang-builder/releases/download/v${{ inputs.llvm }}%2B0.0.2-rc3/llvm-${{ inputs.llvm }}-${{ inputs.target_triple }}.tar.xz'
tar xf llvm.tar.xz
- name: Download LLVM
if: runner.os == 'Windows'
shell: bash
run: |
curl -f -L -o llvm.7z --retry 3 'https://github.com/jacob-carlborg/clang-builder/releases/download/v${{ inputs.llvm }}%2B0.0.2-rc2/llvm-${{ inputs.llvm }}-${{ inputs.target_triple }}.7z'
curl -f -L -o llvm.7z --retry 3 'https://github.com/jacob-carlborg/clang-builder/releases/download/v${{ inputs.llvm }}%2B0.0.2-rc3/llvm-${{ inputs.llvm }}-${{ inputs.target_triple }}.7z'
7z x llvm.7z
# - name: Setup tmate session
Expand Down

0 comments on commit 5fff7b9

Please sign in to comment.