Skip to content

Commit

Permalink
Actually build qt configuration x)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Oct 24, 2023
1 parent a758ad6 commit 9109756
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d

- name: Build
run: dub build -b release-debug --compiler=ldc2 -c linux-gtk-static
run: dub build -b release-debug -c qt --compiler=ldc2

- name: Rename
run: mv "${{github.workspace}}/bin/sideloader" "${{github.workspace}}/bin/sideloader-x86_64"
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d

- name: Build
run: dub build -b release-debug -c cli --compiler=ldc2 --arch x86_64-apple-darwin
run: dub build -b release-debug -c qt --compiler=ldc2 --arch x86_64-apple-darwin

- name: Rename
run: mv "${{github.workspace}}/bin/sideloader" "${{github.workspace}}/bin/sideloader-macOS-x86_64" # TODO make an app bundle
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d

- name: Build
run: dub build -b release-debug -c cli --compiler=ldc2 --arch arm64-apple-macos
run: dub build -b release-debug -c qt --compiler=ldc2 --arch arm64-apple-macos

- name: Rename
run: mv "${{github.workspace}}/bin/sideloader" "${{github.workspace}}/bin/sideloader-macOS-arm64" # TODO make an app bundle
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: echo 'module version_string; enum versionStr = "Sideloader automated build, branch ${{ github.ref_name }}, commit ${{ github.sha }}";' > source/version_string.d

- name: Build
run: dub build -b release-debug --compiler=ldc2 --arch x86_64-windows-msvc
run: dub build -b release-debug -c qt --compiler=ldc2 --arch x86_64-windows-msvc

- name: Rename
run: |
Expand Down

0 comments on commit 9109756

Please sign in to comment.