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 a4a0b7b
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 3 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build_ski.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
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: |
cd ski
./autogen.sh
- name: Configure
run: |
cd ski
./configure --prefix=$PWD/install
- name: Build
run: |
cd ski
make -j$(nproc)
- name: Install
run: |
cd ski
make -j$(nproc) install
6 changes: 3 additions & 3 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: 'make-sandwich'
on:
push:
branches:
- __mirror
#push:
# branches:
# - __mirror
schedule:
# Run everyday at 3 AM UTC
- cron: '0 3 * * *'
Expand Down

0 comments on commit a4a0b7b

Please sign in to comment.