Skip to content

Commit 643996a

Browse files
committed
install git before actions/checkout
1 parent dc3070a commit 643996a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/asan.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,13 @@ jobs:
1414
asan:
1515
runs-on: linux-x86-n2-64
1616
container:
17-
image: us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/ml-build:latest # ratchet:ubuntu:24.04
17+
image: index.docker.io/library/ubuntu@sha256:b359f1067efa76f37863778f7b6d0e8d911e3ee8efa807ad01fbf5dc1ef9006b # ratchet:ubuntu:24.04
1818
strategy:
1919
fail-fast: false
2020
defaults:
2121
run:
2222
shell: bash -l {0}
2323
steps:
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25-
with:
26-
path: jax
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
with:
29-
repository: python/cpython
30-
path: cpython
31-
ref: v3.13.0
3224
- name: Install clang 18
3325
env:
3426
DEBIAN_FRONTEND: noninteractive
@@ -38,6 +30,14 @@ jobs:
3830
zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev curl git \
3931
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev \
4032
libffi-dev liblzma-dev
33+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
with:
35+
path: jax
36+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
37+
with:
38+
repository: python/cpython
39+
path: cpython
40+
ref: v3.13.0
4141
# - name: Build CPython with ASAN enabled
4242
# env:
4343
# ASAN_OPTIONS: detect_leaks=0

0 commit comments

Comments
 (0)