|
19 | 19 | arch: x86_64 |
20 | 20 | c_compiler: cl |
21 | 21 | cpp_compiler: cl |
22 | | - |
| 22 | + |
23 | 23 | # Windows ARM64 |
24 | 24 | - os: windows-11-arm |
25 | 25 | arch: aarch64 |
@@ -67,14 +67,35 @@ jobs: |
67 | 67 | -DCMAKE_BUILD_TYPE=Release |
68 | 68 | -S ${{ github.workspace }} |
69 | 69 |
|
70 | | - - name: Build Patcher |
71 | | - run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config Release --target DualBootKernelPatcher |
| 70 | + - name: Build Patcher and other tools |
| 71 | + if: ${{ matrix.os != 'ubuntu-latest' || matrix.os != 'ubuntu-24.04-arm' }} |
| 72 | + run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config Release --target DualBootKernelPatcher DualBootPatchRemover HDRTool |
| 73 | + |
| 74 | + - name: Build ASM Codes |
| 75 | + if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' }} |
| 76 | + run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config Release |
72 | 77 |
|
73 | | - - name: Upload Artifact |
| 78 | + - name: Upload Tools |
74 | 79 | uses: actions/upload-artifact@v4 |
75 | 80 | with: |
76 | | - name: DualBootKernelPatcher-${{ matrix.os }}-${{ matrix.arch }} |
| 81 | + name: Tools-${{ matrix.os }}-${{ matrix.arch }} |
77 | 82 | path: | |
78 | 83 | ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelPatcher* |
79 | | - ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelRemover* |
| 84 | + ${{ steps.strings.outputs.build-output-dir }}/**/DualBootPatchRemover* |
80 | 85 | ${{ steps.strings.outputs.build-output-dir }}/**/HDRTool* |
| 86 | +
|
| 87 | + - name: Upload ASM Bins |
| 88 | + uses: actions/upload-artifact@v4 |
| 89 | + if: ${{ matrix.os == 'ubuntu-latest' }} |
| 90 | + with: |
| 91 | + name: Shellcodes |
| 92 | + path: | |
| 93 | + ${{ steps.strings.outputs.build-output-dir }}/ShellCode/* |
| 94 | +
|
| 95 | + - name: Upload Configs |
| 96 | + uses: actions/upload-artifact@v4 |
| 97 | + if: ${{ matrix.os == 'ubuntu-latest' }} |
| 98 | + with: |
| 99 | + name: Configs |
| 100 | + path: | |
| 101 | + Config/* |
0 commit comments