Skip to content

Commit

Permalink
Update GH actions (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk authored Mar 21, 2024
1 parent 074ff6b commit b7df72a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
timeout-minutes: 40
container: ghcr.io/kuznia-rdzeni/amaranth-synth:ecp5-2023.11.19_v
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set ownership (Github Actions workaround)
run: |
# https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down Expand Up @@ -66,14 +66,14 @@ jobs:
container: ghcr.io/kuznia-rdzeni/riscv-toolchain:2024.03.12
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Build embench
run: cd test/external/embench && make

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "embench"
path: |
Expand All @@ -87,15 +87,15 @@ jobs:
needs: build-perf-benchmarks
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set ownership (Github Actions workaround)
run: |
# https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -111,7 +111,7 @@ jobs:
. venv/bin/activate
PYTHONHASHSEED=0 TRANSACTRON_VERBOSE=1 ./scripts/gen_verilog.py --verbose --config full
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: "embench"
path: test/external/embench/build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_gh_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
BUILD_DIR: "build"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down
46 changes: 23 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -37,7 +37,7 @@ jobs:
. venv/bin/activate
PYTHONHASHSEED=0 TRANSACTRON_VERBOSE=1 ./scripts/gen_verilog.py --verbose --config full
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "verilog-full-core"
path: |
Expand All @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get submodules HEAD hash
working-directory: .
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Cache compiled and reference riscv-arch-test
id: cache-riscv-arch-test
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-riscv-arch-test
with:
Expand All @@ -93,7 +93,7 @@ jobs:

- if: ${{ steps.cache-riscv-arch-test.outputs.cache-hit != 'true' }}
name: Checkout with submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- if: ${{ steps.cache-riscv-arch-test.outputs.cache-hit != 'true' }}
name: Upload compiled and reference tests artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "riscof-tests"
path: |
Expand All @@ -143,10 +143,10 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -157,7 +157,7 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
name: Download full verilog core
with:
name: "verilog-full-core"
Expand All @@ -168,7 +168,7 @@ jobs:
git config --global --add safe.directory /__w/coreblocks/coreblocks
git submodule > .gitmodules-hash
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Download tests from cache
env:
cache-name: cache-riscv-arch-test
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get submodules HEAD hash
run: |
Expand All @@ -213,7 +213,7 @@ jobs:
- name: Cache regression-tests
id: cache-regression
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-regression-tests
with:
Expand All @@ -229,7 +229,7 @@ jobs:

- if: ${{ steps.cache-regression.outputs.cache-hit != 'true' }}
name: Checkout with submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -238,7 +238,7 @@ jobs:

- if: ${{ steps.cache-regression.outputs.cache-hit != 'true' }}
name: Upload riscv-tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: test/external/riscv-tests

Expand All @@ -250,10 +250,10 @@ jobs:
needs: [ build-regression-tests, build-core ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -264,7 +264,7 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
name: Download full verilog core
with:
name: "verilog-full-core"
Expand All @@ -275,7 +275,7 @@ jobs:
git config --global --add safe.directory /__w/coreblocks/coreblocks
git submodule > .gitmodules-hash
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Download tests from cache
env:
cache-name: cache-regression-tests
Expand Down Expand Up @@ -307,10 +307,10 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
Expand Down Expand Up @@ -339,10 +339,10 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
Expand Down

0 comments on commit b7df72a

Please sign in to comment.