-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (41 loc) · 1.34 KB
/
debug-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# For testing custom commands in the Github Actions CI
name: Debug
on:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
matrix:
include:
- os: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
- name: test
shell: cmd
run: |
echo 1 > test
dir
copy /Y test test2
make -B test
# - name: test
# shell: pwsh
# run: |
# echo 1 > test
# dir
# copy /Y test test2
# - uses: ilammy/msvc-dev-cmd@v1
# - name: MakeAppx
# run: MakeAppx.exe
# - name: Install MSIXPackagingTool
# shell: pwsh
# run: |
# Invoke-WebRequest https://download.microsoft.com/download/b/8/d/b8d117f8-95cc-4210-be09-d197331c134d/MSIXPackagingTool_1.2022.330.0.msixbundle -OutFile ./MSIXPackagingTool.msixbundle
# Invoke-WebRequest https://download.microsoft.com/download/b/8/d/b8d117f8-95cc-4210-be09-d197331c134d/MSIXPackagingTool_1.2022.330.0_License.xml -OutFile ./License.xml
# Add-AppxProvisionedPackage -Path ./ -PackagePath ./MSIXPackagingTool.msixbundle -LicensePath ./License.xml
# - name: MsixPackagingTool
# run: MsixPackagingTool.exe --version
# Import-Module Appx
# Add-AppxPackage -path MSIXPackagingTool.msixbundle