Skip to content

Switch devmem to use long instead of long long, to be nicer to 32 bit… #1961

Switch devmem to use long instead of long long, to be nicer to 32 bit…

Switch devmem to use long instead of long long, to be nicer to 32 bit… #1961

Workflow file for this run

name: toybox CI
on:
schedule:
- cron: '0 2 * * *'
push:
branches: [ master ]
jobs:
MacOS-12:
runs-on: macos-12
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-20_04:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup
run: sudo apt-get install build-essential
- name: Configure
run: make defconfig
- name: Build
run: make
- name: Test
run: VERBOSE=all make tests