Install sdcc #4
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: Install compiler(s) | |
run-name: Install ${{ inputs.compilers }} | |
on: | |
workflow_dispatch: | |
inputs: | |
compilers: | |
description: Things to install | |
required: true | |
jobs: | |
install: | |
runs-on: [ 'self-hosted', 'ce', 'ubuntu' ] | |
steps: | |
- name: Start from a clean directory | |
uses: AutoModality/[email protected] | |
- uses: actions/checkout@v4 | |
- name: Set up environment | |
run: make ce | |
- name: Install ${{ github.event.inputs.compilers }} | |
run: sudo bin/ce_install --check-user nobody install ${{ github.event.inputs.compilers }} |