Skip to content

Test ski build

Test ski build #1

Workflow file for this run

name: 'build_ski'
on:
workflow_dispatch:
jobs:
build_ski:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Check failure on line 9 in .github/workflows/build_ski.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_ski.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
with:
repository: johnny-mnemonic/ski
ref: master
path: ski
- name: install_prereqs
run: |
sudo apt update
# basic build depends:
sudo apt install binutils-dev libelf-dev libiberty-dev libncurses-dev
# dev-only depends:
#sudo apt install autoconf autoconf-archive automake flex bison gperf pkg-config
- name: Generate ./configure
run: ./autogen.sh
- name: Configure
run: ./configure --prefix=$PWD/install
- name: Build
run: make -j$(nproc)
- name: Install
run: make -j$(nproc) install