Skip to content

Commit

Permalink
Rename Actions and attempt to fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Oct 24, 2023
1 parent 49bdb85 commit a758ad6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sideloader builds
name: CLI builds

on: push

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-gtk.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sideloader builds
name: GTK builds

on: push

Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/build-qt.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sideloader builds
name: Qt builds

on: push

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Set-up Qt for cross-compilation
run:
cp -r $QT_ROOT_DIR/lib/* $HOME/ldc2-1.33.0-osx-x86_64/lib
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
Expand Down Expand Up @@ -174,6 +174,10 @@ jobs:
curl -LO https://github.com/ldc-developers/ldc/releases/download/v1.33.0/ldc2-1.33.0-osx-arm64.tar.xz
tar -xf ./ldc2-1.33.0-osx-arm64.tar.xz -C $HOME
- name: Set-up Qt for cross-compilation
run:
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

Expand Down Expand Up @@ -242,7 +246,7 @@ jobs:
- name: Set-up Qt for cross-compilation
run:
cp -r $QT_ROOT_DIR/lib/* $HOME/ldc2-1.33.0-windows-x64/lib
cp -r $Qt5_DIR/lib/* $HOME/ldc2-1.33.0-windows-x64/lib

- 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
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-win32.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sideloader builds
name: Windows Forms builds

on: push

Expand Down Expand Up @@ -48,7 +48,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 windows-win32 --compiler=ldc2 --arch x86_64-windows-msvc
run: dub build -b release-debug -c windows-winforms --compiler=ldc2 --arch x86_64-windows-msvc

- name: Rename
run: |
Expand Down

0 comments on commit a758ad6

Please sign in to comment.