-
Notifications
You must be signed in to change notification settings - Fork 3
84 lines (73 loc) · 3.04 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Build Docker and Create Release
on:
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
slurm:
- version: 23.02.8
image:
- context: .
push: false
platforms: linux/amd64
load: true
ubuntu_version: focal
pmix_version: 5.0.2
cuda_version: 12.2.2
build_args:
BASE_IMAGE=nvidia/cuda:12.2.2-cudnn8-devel-ubuntu20.04
- context: .
push: false
platforms: linux/amd64
load: true
ubuntu_version: jammy
pmix_version: 5.0.3
cuda_version: 12.2.2
build_args:
BASE_IMAGE=nvidia/cuda:12.2.2-cudnn8-devel-ubuntu22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build docker images
uses: docker/build-push-action@v6
with:
context: ${{ matrix.image.context }}
push: ${{ matrix.image.push }}
tags: slurm_builder:${{ matrix.image.cuda_version }}-${{ matrix.image.ubuntu_version }}-slurm${{ matrix.slurm.version }}
platforms: ${{ matrix.image.platforms }}
load: ${{ matrix.image.load }}
build-args: |
${{ matrix.image.build_args }}
SLURM_VERSION=${{ matrix.slurm.version }}
PMIX_VERSION=${{ matrix.image.pmix_version }}
cache-from: type=local,src=.buildx-cache
cache-to: type=local,dest=.buildx-cache,mode=max
- name: Create slurm_build_output directory
run: mkdir -p slurm_build_output
- name: Run Docker container and copy files
run: |
container_id=$(docker create slurm_builder:${{ matrix.image.cuda_version }}-${{ matrix.image.ubuntu_version }}-slurm${{ matrix.slurm.version }})
docker start $container_id
docker cp $container_id:/usr/src/debs/ ./slurm_build_output/
docker cp $container_id:/usr/src/nccl-tests/build/nccl-tests-perf.tar.gz ./slurm_build_output/
docker rm $container_id
- name: Create GitHub Release and Upload DEB packages
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ matrix.image.cuda_version }}-${{ matrix.image.ubuntu_version }}-slurm${{ matrix.slurm.version }}
name: Cuda ${{ matrix.image.cuda_version }}, Ubuntu ${{ matrix.image.ubuntu_version }}, Slurm ${{ matrix.slurm.version }}
body: "Release based on Ubuntu ${{ matrix.image.ubuntu_version }} for Slurm ${{ matrix.slurm.version }} with cuda ${{ matrix.image.cuda_version }}, PMIx ${{ matrix.image.pmix_version }} and libnccl"
draft: false
prerelease: false
files: |
slurm_build_output/debs/*.deb
slurm_build_output/nccl-tests-perf.tar.gz
- name: Cleanup
run: rm -rf slurm_build_output/*.deb