From 83f563cf795d59abf5fad986c31516ef4e41cbaf Mon Sep 17 00:00:00 2001 From: Nicholas Sielicki Date: Tue, 17 Sep 2024 16:06:19 -0700 Subject: [PATCH] feat(ci/github): use docker instead of codebuild codebuild runners seems to get stuck for us regularly for whatever reason, just use docker and the al2023/al2 images that exist there. Other fixes: use the amzn2023 cuda repo, bump cuda versions that these builds operate against. Signed-off-by: Nicholas Sielicki --- .github/workflows/distcheck.yaml | 38 ++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/.github/workflows/distcheck.yaml b/.github/workflows/distcheck.yaml index 239c751c..f362e86c 100644 --- a/.github/workflows/distcheck.yaml +++ b/.github/workflows/distcheck.yaml @@ -47,28 +47,31 @@ jobs: matrix: sdk: - cuda - amazonlinux: - - al2023 - - al2 + container: + - amazonlinux:2023 + - amazonlinux:2 efainstaller: - latest - 1.25.0 include: - - amazonlinux: al2023 + - container: amazonlinux:2023 efainstallerdir: ALINUX2023 - nvidiadistro: fedora37 + nvidiadistro: amzn2023 configmanager: dnf config-manager - cudapackages: cuda-cudart-devel-12-3 cuda-driver-devel-12-3 + cudapackages: cuda-cudart-devel-12-5 cuda-driver-devel-12-5 - - amazonlinux: al2 + - container: amazonlinux:2 efainstallerdir: ALINUX2 nvidiadistro: rhel7 configmanager: yum-config-manager - cudapackages: cuda-cudart-devel-12-3 cuda-driver-devel-12-3 + cudapackages: cuda-cudart-devel-12-4 cuda-driver-devel-12-4 - runs-on: codebuild-ghactions-${{ matrix.amazonlinux }}-${{ github.run_id }}-${{ github.run_attempt }} - name: ${{matrix.amazonlinux}}/${{ matrix.sdk }}/efa@${{ matrix.efainstaller }}/makeinstall + runs-on: ubuntu-latest + container: ${{ matrix.container }} + name: ${{matrix.container}}/${{ matrix.sdk }}/efa@${{ matrix.efainstaller }}/makeinstall steps: + - run: | + yum -y update && yum -y install git tar util-linux findutils yum-utils # note, do not bump to v4: https://github.com/actions/checkout/issues/1590 - uses: actions/checkout@v3 - name: Fetch and Install EFA Installer Dependencies @@ -76,20 +79,21 @@ jobs: curl -O https://efa-installer.amazonaws.com/aws-efa-installer-${{ matrix.efainstaller }}.tar.gz tar -xf aws-efa-installer-*.tar.gz cd aws-efa-installer/RPMS/${{ matrix.efainstallerdir }}/x86_64 - find . | grep rpm$ | xargs sudo yum -y localinstall + find . | grep rpm$ | xargs yum -y localinstall - name: Install hwloc, utilities. run: | - sudo yum -y install hwloc-devel yum-utils + yum -y install hwloc-devel autoconf automake libtool gcc g++ git make - name: Install CUDA run: | - sudo ${{ matrix.configmanager }} --add-repo \ + ${{ matrix.configmanager }} --add-repo \ http://developer.download.nvidia.com/compute/cuda/repos/${{ matrix.nvidiadistro }}/x86_64/cuda-${{ matrix.nvidiadistro }}.repo \ --save - sudo yum -y clean expire-cache - sudo yum -y install ${{ matrix.cudapackages }} + yum -y clean expire-cache + yum -y install ${{ matrix.cudapackages }} - name: Call `autoreconf -ivf` - run: ./autogen.sh + run: | + ./autogen.sh - name: Call `./configure` run: | @@ -103,7 +107,7 @@ jobs: run: make -j - name: Call `make install` - run: sudo make install + run: make install distcheck: runs-on: ubuntu-22.04