Skip to content

Commit

Permalink
update IKOS to v3.5, prep release v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jakoch committed Feb 4, 2025
1 parent 3f66a9e commit e0e5239
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .devcontainer/debian/bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ FROM debian:bookworm-slim AS downloader

# Reuse global arguments
ARG VULKAN_VERSION
ARG IKOS_VERSION=3.4
ARG IKOS_VERSION=3.5

ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NOWARNINGS="yes" \
Expand Down Expand Up @@ -174,7 +174,7 @@ RUN echo "IKOS" && \
python3 -m build --no-isolation --outdir "/opt/ikos/dist/" --wheel "analyzer/python" && \
find /opt/ikos/dist -name "*.whl" -exec ls -la {} + && \
echo "Install Python Module" && \
python3 -m pip install --no-cache-dir "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module" && \
python3 -m pip install --no-cache-dir $(find /opt/ikos/dist -name "ikos-*.whl") --target "/opt/ikos/python-module" && \
export PYTHONPATH="/opt/ikos/python-module" && \
echo "Test" && \
#ls -lahr /opt/ikos/bin && \
Expand Down Expand Up @@ -423,10 +423,10 @@ RUN apt-get update && apt-get install --no-install-recommends --assume-yes \
apt-get autoremove -y && \
apt-get clean autoclean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
# Install IKOS Python module
python3 -m pip install --no-cache-dir "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module"
# Test
#ikos --version
# Install IKOS Python module (* for dynamic version)
python3 -m pip install --no-cache-dir $(find /opt/ikos/dist -name "ikos-*.whl") --target "/opt/ikos/python-module" && \
# Test
ikos --version

#
# 888 888 888 888 888b d888
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/debian/trixie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ FROM debian:trixie-slim AS downloader
#ARG GCC_VERSION
ARG VULKAN_VERSION
ARG MESA_VERSION
ARG IKOS_VERSION=3.4
ARG IKOS_VERSION=3.5

ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NOWARNINGS="yes" \
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- "It was a bright day in April, and the clocks were striking thirteen." - 1984

## [1.0.8] - 2025-02-04

**Changed**
- bookworm & trixie image: updated IKOS to v3.5

## [1.0.7] - 2025-01-26

**Changed**
Expand Down Expand Up @@ -141,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- Section for Reference Links -->

[vNext]: https://github.com/jakoch/cpp-devbox/compare/v1.0.7...HEAD
[vNext]: https://github.com/jakoch/cpp-devbox/compare/v1.0.8...HEAD
[1.0.8]: https://github.com/jakoch/cpp-devbox/releases/tag/v1.0.8
[1.0.7]: https://github.com/jakoch/cpp-devbox/releases/tag/v1.0.7
[1.0.6]: https://github.com/jakoch/cpp-devbox/releases/tag/v1.0.6
[1.0.5]: https://github.com/jakoch/cpp-devbox/releases/tag/v1.0.5
Expand Down

0 comments on commit e0e5239

Please sign in to comment.