Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ jobs:

- name: 'Install Nix'
if: ${{ !startsWith(matrix.os, 'self') }}
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v31.5.1
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
install_url: https://releases.nixos.org/nix/nix-2.30.1/install
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = http://cache.nixos.org https://hydra.iohk.io
Expand Down Expand Up @@ -105,9 +105,9 @@ jobs:

- name: 'Install Nix'
if: ${{ !startsWith(matrix.os, 'self') }}
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v31.5.1
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
install_url: https://releases.nixos.org/nix/nix-2.30.1/install
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = http://cache.nixos.org https://hydra.iohk.io
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ jobs:
- name: 'Check out code'
uses: actions/checkout@v4
- name: 'Install Nix'
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v31.5.1
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
install_url: https://releases.nixos.org/nix/nix-2.30.1/install
extra_nix_config: |
substituters = http://cache.nixos.org https://hydra.iohk.io
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
Expand Down Expand Up @@ -198,9 +198,9 @@ jobs:
run: brew install bash
- name: 'Install Nix'
if: ${{ !startsWith(matrix.os, 'self') }}
uses: cachix/install-nix-action@v22
uses: cachix/install-nix-action@v31.5.1
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
install_url: https://releases.nixos.org/nix/nix-2.30.1/install
extra_nix_config: |
substituters = http://cache.nixos.org https://hydra.iohk.io
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
Expand Down
6 changes: 2 additions & 4 deletions package/docker/Dockerfile.ubuntu-jammy
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ RUN apt-get update
&& apt-get install --yes --no-install-recommends /kframework_amd64_ubuntu_jammy.deb \
&& rm /kframework_amd64_ubuntu_jammy.deb

ENV PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin
COPY kframework-*.whl ./
RUN pipx ensurepath \
&& . /root/.profile \
&& pip install /kframework-*.whl \
&& rm /kframework-*.whl
RUN pipx install /kframework-*.whl && rm /kframework-*.whl
6 changes: 2 additions & 4 deletions package/docker/Dockerfile.ubuntu-noble
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ RUN apt-get update
&& apt-get install --yes --no-install-recommends /kframework_amd64_ubuntu_noble.deb \
&& rm /kframework_amd64_ubuntu_noble.deb

ENV PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin
COPY kframework-*.whl ./
RUN pipx ensurepath \
&& . /root/.profile \
&& pip install /kframework-*.whl --break-system-packages \
&& rm /kframework-*.whl
RUN pipx install /kframework-*.whl && rm /kframework-*.whl
Loading