mirror of
https://codeberg.org/landley/toybox.git
synced 2026-01-26 14:13:25 +00:00
33 lines
599 B
YAML
33 lines
599 B
YAML
name: toybox CI
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
MacOS-13:
|
|
runs-on: macos-13
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup
|
|
run: brew install gnu-sed
|
|
- name: Configure
|
|
run: make macos_defconfig
|
|
- name: Build
|
|
run: make
|
|
- name: Test
|
|
run: VERBOSE=all make tests
|
|
|
|
Ubuntu-22_04:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup
|
|
run: sudo apt-get install build-essential
|
|
- name: Configure build and test
|
|
run: VERBOSE=all make defconfig tests
|