Upgrade PyTorch version to 2.6.0, Add CUDA 12.6 Support and Update GA… #52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 24.04 GCC" | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
gcc: [13, 14] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up CMake | |
uses: jwlawson/actions-setup-cmake@v2 | |
with: | |
cmake-version: '3.28.6' | |
- 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 |