Fix build command in CI script #4
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'feature/**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ubuntu: | |
name: Ubuntu 22.04 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install -y gcc g++ texinfo make flex bison libmpfr-dev libgmp-dev libmpc-dev | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build | |
run: bash build-toolchain --all |