Skip to content

Commit 4a37275

Browse files
committed
Revert "try enzyme dev image"
This reverts commit 22be642.
1 parent 22be642 commit 4a37275

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ccpp.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,26 @@ jobs:
4040
name: Integration CI LLVM ${{ matrix.llvm }} ${{ matrix.build }} ${{ matrix.os }}
4141
runs-on: ubuntu-latest
4242
container:
43-
image: ghcr.io/enzymead/enzyme-dev-docker/${{ matrix.os }}-llvm-${{ matrix.llvm }}
43+
image: ${{ matrix.os }}
4444

4545
strategy:
4646
fail-fast: false
4747
matrix:
4848
llvm: ["15", "16", "17", "18"]
4949
build: ["Release"] # "RelWithDebInfo"
50-
os: ["ubuntu-20"]
50+
os: ["ubuntu:20.04"]
5151

5252
timeout-minutes: 45
5353

5454
steps:
55+
- name: add llvm
56+
run: |
57+
apt-get -q update
58+
apt-get install -y --no-install-recommends ca-certificates software-properties-common curl gnupg2
59+
curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add -
60+
apt-add-repository -y "deb http://apt.llvm.org/`lsb_release -cs`/ llvm-toolchain-`lsb_release -cs`-${{ matrix.llvm }} main"
61+
apt-get -q update
62+
apt-get install -y --no-install-recommends sudo git ssh zlib1g-dev libzstd-dev automake autoconf cmake make lldb ninja-build gcc g++ gfortran build-essential libtool llvm-${{ matrix.llvm }}-dev clang-format clangd lld-${{ matrix.llvm }} clang-${{ matrix.llvm }} libclang-${{ matrix.llvm }}-dev libomp-${{ matrix.llvm }}-dev libblas-dev libeigen3-dev libboost-dev python3 python3-pip
5563
- uses: actions/checkout@v4
5664
- name: mkdir
5765
run: rm -rf build && mkdir build

0 commit comments

Comments
 (0)