switch CI to use mirrors
All checks were successful
/ deps (pull_request) Successful in 12m27s
/ test (pull_request) Successful in 4m3s
/ deps (push) Successful in 14s
/ test (push) Successful in 4m14s

This commit is contained in:
Jacob Lifshay 2025-03-02 17:43:29 -08:00
parent 3458c21f44
commit 60734cc9d1
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ
2 changed files with 9 additions and 9 deletions

View file

@ -12,10 +12,10 @@ jobs:
outputs: outputs:
cache-primary-key: ${{ steps.restore-deps.outputs.cache-primary-key }} cache-primary-key: ${{ steps.restore-deps.outputs.cache-primary-key }}
steps: steps:
- uses: https://code.forgejo.org/actions/checkout@v3 - uses: https://git.libre-chip.org/mirrors/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: https://code.forgejo.org/actions/cache/restore@v3 - uses: https://git.libre-chip.org/mirrors/cache/restore@v3
id: restore-deps id: restore-deps
with: with:
path: deps path: deps
@ -58,19 +58,19 @@ jobs:
- name: Get SymbiYosys - name: Get SymbiYosys
if: steps.restore-deps.outputs.cache-hit != 'true' if: steps.restore-deps.outputs.cache-hit != 'true'
run: | run: |
git clone --depth=1 --branch=yosys-0.45 https://github.com/YosysHQ/sby.git deps/sby git clone --depth=1 --branch=yosys-0.45 https://git.libre-chip.org/mirrors/sby deps/sby
- name: Build Z3 - name: Build Z3
if: steps.restore-deps.outputs.cache-hit != 'true' if: steps.restore-deps.outputs.cache-hit != 'true'
run: | run: |
git clone --depth=1 --recursive --branch=z3-4.13.3 https://github.com/Z3Prover/z3.git deps/z3 git clone --depth=1 --recursive --branch=z3-4.13.3 https://git.libre-chip.org/mirrors/z3 deps/z3
(cd deps/z3; PYTHON=python3 ./configure --prefix=/usr/local) (cd deps/z3; PYTHON=python3 ./configure --prefix=/usr/local)
make -C deps/z3/build -j"$(nproc)" make -C deps/z3/build -j"$(nproc)"
- name: Build Yosys - name: Build Yosys
if: steps.restore-deps.outputs.cache-hit != 'true' if: steps.restore-deps.outputs.cache-hit != 'true'
run: | run: |
git clone --depth=1 --recursive --branch=0.45 https://github.com/YosysHQ/yosys.git deps/yosys git clone --depth=1 --recursive --branch=0.45 https://git.libre-chip.org/mirrors/yosys deps/yosys
make -C deps/yosys -j"$(nproc)" make -C deps/yosys -j"$(nproc)"
- uses: https://code.forgejo.org/actions/cache/save@v3 - uses: https://git.libre-chip.org/mirrors/cache/save@v3
if: steps.restore-deps.outputs.cache-hit != 'true' if: steps.restore-deps.outputs.cache-hit != 'true'
with: with:
path: deps path: deps

View file

@ -9,7 +9,7 @@ jobs:
runs-on: debian-12 runs-on: debian-12
needs: deps needs: deps
steps: steps:
- uses: https://code.forgejo.org/actions/checkout@v3 - uses: https://git.libre-chip.org/mirrors/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- run: | - run: |
@ -41,7 +41,7 @@ jobs:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.82.0 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.82.0
source "$HOME/.cargo/env" source "$HOME/.cargo/env"
echo "$PATH" >> "$GITHUB_PATH" echo "$PATH" >> "$GITHUB_PATH"
- uses: https://code.forgejo.org/actions/cache/restore@v3 - uses: https://git.libre-chip.org/mirrors/cache/restore@v3
with: with:
path: deps path: deps
key: ${{ needs.deps.outputs.cache-primary-key }} key: ${{ needs.deps.outputs.cache-primary-key }}
@ -52,7 +52,7 @@ jobs:
make -C deps/yosys install make -C deps/yosys install
export PATH="$(realpath deps/firtool/bin):$PATH" export PATH="$(realpath deps/firtool/bin):$PATH"
echo "$PATH" >> "$GITHUB_PATH" echo "$PATH" >> "$GITHUB_PATH"
- uses: https://github.com/Swatinem/rust-cache@v2 - uses: https://git.libre-chip.org/mirrors/rust-cache@v2
with: with:
save-if: ${{ github.ref == 'refs/heads/master' }} save-if: ${{ github.ref == 'refs/heads/master' }}
- run: cargo test - run: cargo test