Skip to content

Commit

Permalink
Attempt #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Dec 27, 2023
1 parent e31bbf7 commit 6d1c3fd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
cp -r $Qt5_DIR/lib/* $HOME/ldc2-1.33.0-osx-x86_64/lib

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libz-dev elfutils clang lld
run: sudo apt-get update && sudo apt-get install -y libz-dev elfutils clang lld-15

- name: Write version file
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
cp -r $Qt5_DIR/lib/* $HOME/ldc2-1.33.0-osx-arm64/lib

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libz-dev elfutils clang lld
run: sudo apt-get update && sudo apt-get install -y libz-dev elfutils clang lld-15

- name: Write version file
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d
Expand Down Expand Up @@ -265,7 +265,8 @@ jobs:

- name: Build
run: |
$env:LIB += ';$Qt5_Dir\lib'
$env:LIB += ';$env:Qt5_Dir\lib'
echo $env:LIB
dub build -b release-debug -c qt --compiler=ldc2
- name: Rename
Expand Down

0 comments on commit 6d1c3fd

Please sign in to comment.