Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pytorch/cpuinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 794e283..fb31c1a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -43,6 +43,31 @@ jobs:
run: scripts/local-build.sh
shell: bash # Specify bash so we can reuse the build script on Windows (runs on Git bash)
working-directory: ${{ github.workspace }}
+ cmake-uwp:
+ runs-on: windows-latest
+ timeout-minutes: 40
+ steps:
+ - uses: actions/checkout@v2
+ - name: 'x64-uwp(Debug)'
+ uses: lukka/run-cmake@v10
+ with:
+ configurePreset: 'x64-uwp'
+ buildPreset: 'x64-uwp-dbg'
+ - name: 'x64-uwp(Release)'
+ uses: lukka/run-cmake@v10
+ with:
+ configurePreset: 'x64-uwp'
+ buildPreset: 'x64-uwp-rel'
+ - name: 'arm64-uwp(Debug)'
+ uses: lukka/run-cmake@v10
+ with:
+ configurePreset: 'arm64-uwp'
+ buildPreset: 'arm64-uwp-dbg'
+ - name: 'arm64-uwp(Release)'
+ uses: lukka/run-cmake@v10
+ with:
+ configurePreset: 'arm64-uwp'
+ buildPreset: 'arm64-uwp-rel'
cmake-android:
strategy:
matrix: