File tree Expand file tree Collapse file tree 2 files changed +9
-15
lines changed
Expand file tree Collapse file tree 2 files changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ jobs:
108108 - name : Install required packages
109109 run : |
110110 apt update
111- apt install -y jq gh unzip curl gettext time
111+ apt install -y jq gh unzip curl gettext
112112 - name : Add Rapids tools
113113 run : |
114114 mkdir gha-tools
@@ -126,21 +126,17 @@ jobs:
126126 SCCACHE_VERSION : 0.14.0-rapids.1
127127 GH_TOKEN : ${{ github.token }}
128128 run : rapids-install-sccache
129+ - name : Cache caches
130+ uses : actions/cache@v5
131+ with :
132+ path : /opt/conda/pkgs
133+ key : ${{ matrix.ARCH }}-${{ matrix.PY_VER }}
129134 - name : Update conda and install conda build
130135 run : |
131136 set -x
132-
133- ls -lA $HOME
134- test -d $HOME/.cache && exit 1
135-
136137 # Is update really needed?
137138 rapids-mamba-retry update --all -y -n base
138139 conda install -y conda-build
139- - name : Cache caches
140- uses : actions/cache@v5
141- with :
142- path : /opt/conda/pkgs
143- key : ${{ matrix.ARCH }}-${{ matrix.PY_VER }}
144140 - name : Install python
145141 env :
146142 PYTHON_VERSION : ${{ matrix.PY_VER }}
Original file line number Diff line number Diff line change @@ -27,10 +27,8 @@ rapids-logger "Begin py build"
2727
2828sccache --zero-stats
2929
30- for pkg in ast_canopy numbast{,_extensions}; do
31- command time -ap -o time.txt rapids-conda-retry build " conda/recipes/${pkg} "
32- done
33-
34- cat time.txt
30+ rapids-conda-retry build conda/recipes/ast_canopy
31+ rapids-conda-retry build conda/recipes/numbast
32+ rapids-conda-retry build conda/recipes/numbast_extensions
3533
3634sccache --show-adv-stats
You can’t perform that action at this time.
0 commit comments