From fe20bcd6da90829afbaeb16e0befeae5b253fb54 Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Sun, 16 Jun 2024 13:15:12 +0300 Subject: [PATCH] workflows: use --no-deps to stop the madness. --- setup-action/action.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/setup-action/action.yml b/setup-action/action.yml index 21586ef..2228255 100644 --- a/setup-action/action.yml +++ b/setup-action/action.yml @@ -27,24 +27,12 @@ runs: run: cd setup-niar-out/niar && pip install -e . shell: bash - - name: Checkout amaranth-stdio - uses: actions/checkout@v4 - with: - repository: amaranth-lang/amaranth-stdio - path: setup-niar-out/amaranth-stdio - - name: Install amaranth-stdio - run: cd setup-niar-out/amaranth-stdio && pip install -e . + run: pip install --no-deps git+https://github.com/amaranth-lang/amaranth-stdio.git shell: bash - - name: Checkout amaranth-boards - uses: actions/checkout@v4 - with: - repository: amaranth-lang/amaranth-boards - path: setup-niar-out/amaranth-boards - - name: Install amaranth-boards - run: cd setup-niar-out/amaranth-boards && pip install -e . + run: pip install --no-deps git+https://github.com/amaranth-lang/amaranth-boards.git shell: bash - name: Install Zig