42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
name: toolchain-build
|
|
description: 'Builds or retrieves cache of the selected toolchain'
|
|
|
|
inputs:
|
|
tools-version:
|
|
description: Which toolchain to build
|
|
required: false
|
|
default: 'riscv-tools'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Generate hashes
|
|
run: .github/scripts/create-hash.sh
|
|
shell: bash
|
|
|
|
# brute force way to swap between riscv/esp-tools caches
|
|
- name: Cache riscv-tools
|
|
uses: actions/cache@v2
|
|
id: toolchain-build-riscv-tools
|
|
with:
|
|
path: ${{ inputs.tools-version }}-install
|
|
key: riscv-tools-installed-${{ env.tools-cache-version }}-${{ hashFiles('**/riscv-tools.hash') }}
|
|
|
|
# brute force way to swap between riscv/esp-tools caches
|
|
- name: Cache esp-tools
|
|
uses: actions/cache@v2
|
|
id: toolchain-build-esp-tools
|
|
with:
|
|
path: ${{ inputs.tools-version }}-install
|
|
key: esp-tools-installed-${{ env.tools-cache-version }}-${{ hashFiles('**/esp-tools.hash') }}
|
|
|
|
- name: Build toolchain if not cached
|
|
run: |
|
|
if [[ "${{ steps.toolchain-build-riscv-tools.outputs.cache-hit }}" != 'true' || "${{ steps.toolchain-build-esp-tools.outputs.cache-hit }}" != 'true' ]]; then
|
|
echo "Cache miss on ${{ inputs.tools-version }}-install. Build."
|
|
./.github/scripts/build-toolchains.sh ${{ inputs.tools-version }}
|
|
else
|
|
echo "Cache hit do not rebuild toolchain ${{ inputs.tools-version }}."
|
|
fi
|
|
shell: bash
|