Skip to content

Commit

Permalink
Test ski build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny-mnemonic committed Jan 29, 2024
1 parent 0bb79be commit e0c0b57
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_ski.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 'build_ski'
on:
workflow_dispatch:

jobs:
build_ski:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
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

0 comments on commit e0c0b57

Please sign in to comment.