Cache COMPRESS runs in CI #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: | |
- v** | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v4 | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@v3 | |
with: | |
working_directory: docs | |
root_file: SMAesH.tex | |
- name: Upload PDF file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: docs/SMAesH.pdf | |
sbox: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: true | |
matrix: | |
nshares: [2] | |
env: | |
NSHARES: "${{ matrix.nshares }}" | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: sudo apt-get install -y yosys | |
- name: Cache COMPRESS Sbox | |
uses: actions/cache@v4 | |
with: | |
key: "sbox-compress-d${{ matrix.nshares }}-v1" | |
path: work/d${{ matrix.nshares }}/sbox | |
- run: make sbox | |
- name: Upload COMPRESS sbox | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sbox_${{ matrix.nshares }} | |
path: work/d${{ matrix.nshares }}/sbox/* | |
functest: | |
needs: [sbox] | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: true | |
matrix: | |
nshares: [2] | |
env: | |
NSHARES: "${{ matrix.nshares }}" | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/download-artifact@v4 | |
with: | |
name: sbox | |
path: work/d${{ matrix.nshares }}/sbox | |
- run: sudo apt-get install -y yosys verilator iverilog | |
- run: make func-tests | |
release: | |
needs: [build_latex, functest] | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: docs | |
path: release | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body: | | |
View CHANGELOG.md for full changes. | |
files: | | |
release/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |