Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/clingo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ jobs:
spack external find cmake bison

spack python clingo/install_clingo.py
spack buildcache push --unsigned ./binary-mirror clingo-bootstrap
spack buildcache push --unsigned --without-build-dependencies \
./binary-mirror clingo-bootstrap

- uses: actions/upload-artifact@v5
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/gnupg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
spack config add "packages:all:prefer:[target=$(spack arch --family --target)]"

spack install gnupg
spack buildcache push --unsigned ./binary-mirror gnupg
spack buildcache push --unsigned --without-build-dependencies \
./binary-mirror gnupg

- uses: actions/upload-artifact@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions clingo/Dockerfile.manylinux2014
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ RUN export PY_PATH=$(printf '%s' "$PYTHON_VERSION" | \
awk -F. '{maj=$1; min=$2; suf=(maj*10+min<=37)?"m":""; printf "cp%d%d-cp%d%d%s\n", maj, min, maj, min, suf}') \
&& SPACK_PYTHON=/opt/python/${PY_PATH}/bin/python3 spack python install_clingo.py

RUN spack buildcache push --unsigned ./binary-mirror clingo-bootstrap

RUN spack buildcache push --unsigned --without-build-dependencies \
./binary-mirror clingo-bootstrap
3 changes: 2 additions & 1 deletion gnupg/Dockerfile.manylinux2014
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ RUN spack config add "config:install_tree:padded_length:256"
RUN spack config add "packages:all:prefer:[target=$(spack arch --family --target)]"

RUN spack install gnupg
RUN spack buildcache push --unsigned ./binary-mirror gnupg
RUN spack buildcache push --unsigned --without-build-dependencies \
./binary-mirror gnupg
3 changes: 2 additions & 1 deletion patchelf/Dockerfile.manylinux2014
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ RUN spack config add "config:install_tree:padded_length:256"
RUN spack config add "packages:all:prefer:[target=$(spack arch --family --target)]"

RUN spack install patchelf
RUN spack buildcache push --unsigned ./binary-mirror patchelf
RUN spack buildcache push --unsigned --without-build-dependencies \
./binary-mirror patchelf
Loading