Skip to content

Upgraded pytorch to 2.3.0 latest version #46

Upgraded pytorch to 2.3.0 latest version

Upgraded pytorch to 2.3.0 latest version #46

Workflow file for this run

name: ci-build-ubuntu
on:
push:
paths-ignore:
- .dockerignore
- .gitignore
- .gitattributes
- AUTHORS
- CONTRIBUTING.md
- docker-compose.yml
- LICENSE
- README.md
- Dockerfile
- images/*
- docker/*
pull_request:
jobs:
build-ubuntu:
name: "Ubuntu 22.04 GCC"
runs-on: ubuntu-22.04
strategy:
matrix:
gcc: [11, 12, 13]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.19.0'
- name: Set up GCC
uses: egor-tensin/setup-gcc@v1
with:
version: ${{ matrix.gcc }}
- name: Cpplint
run: cmake -P cmake/cpplint.cmake
- name: Configure
run: cmake -B build -D DOWNLOAD_DATASETS=OFF
- name: Build tutorials
run: cmake --build build --parallel 4