[SES-42] fix another version #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: IONOS Windows Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- feature/SES-42_pipeline | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
build: | |
env: | |
HOME: ${{ github.workspace }} | |
CRAFT_TARGET: windows-msvc2019_64-cl | |
name: IONOS Windows Build | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
# - name: Print Filesystem for Debug | |
# run: | | |
# Get-ChildItem -Recurse "${{ github.workspace }}\Craft64\" | |
- name: Clone CraftMaster | |
run: git clone -q --depth=1 https://invent.kde.org/kde/craftmaster.git "${{ github.workspace }}\craft\CraftMaster" | |
- name: Craftmaster setup | |
run: | | |
& "${{ github.workspace }}\.github\workflows\craft_setup.ps1" --setup | |
# - name: Setup Craft Environment | |
# run: | | |
# cd "${{ github.workspace }}\Craft64\craft\" | |
# $ ".\craftenv.ps1" | |
# - name: Add blueprint repository | |
# run: | | |
# "${{ github.workspace }}\.github\workflows\craft_setup.ps1" --add-blueprint-repository [git]https://github.com/EmilBohleber/nc-desktop-client-blueprints.git | |
- name: Craft unshelve | |
continue-on-error: true | |
run: | | |
& "${{ github.workspace }}\.github\workflows\craft_setup.ps1" -c --unshelve "${{ github.workspace }}\craft.shelf" | |
# - name: Switch Craft to qt5-lts | |
# run: | | |
# & cd "${{ github.workspace }}\craft\${{ env.CRAFT_TARGET}}\etc\blueprints\locations\craft-blueprints-kde" | |
# git checkout qt5-lts | |
# - name: craft | |
# run: | | |
# craft craft | |
# - name: print Debug filesystem | |
# run: | | |
# Get-ChildItem -Recurse "D:\a\nc-desktop\nc-desktop\craft\CraftMaster\windows-msvc2019_64-cl\etc\blueprints\locations\craft-blueprints-kde" | |
- name: Install dependencies | |
run: | | |
& "${{ github.workspace }}\.github\workflows\craft_setup.ps1" -c --install-deps nextcloud-client | |