Skip to content

Upgraded pytorch to 2.3.0 latest version #42

Upgraded pytorch to 2.3.0 latest version

Upgraded pytorch to 2.3.0 latest version #42

Workflow file for this run

name: ci-build-windows
on:
push:
paths-ignore:
- .dockerignore
- .gitignore
- .gitattributes
- AUTHORS
- CONTRIBUTING.md
- docker-compose.yml
- LICENSE
- README.md
- Dockerfile
- images/*
- docker/*
pull_request:
jobs:
build-windows:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
name: Windows MSVC 2019,
os: windows-2019,
cmake: '3.14.0'
}
- {
name: Windows MSVC 2022,
os: windows-2022,
cmake: '3.24.2'
}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ matrix.config.cmake }}
- name: Cpplint
run: cmake -P cmake/cpplint.cmake
- name: Configure
run: cmake -B build -A x64 -D DOWNLOAD_DATASETS=OFF
- name: Build tutorials
run: cmake --build build --config Release --parallel 4