mirror of
https://github.com/tailix/libkernaux.git
synced 2025-03-31 17:25:22 -04:00
Split GitHub Actions into separate workflows
This commit is contained in:
parent
79094580ee
commit
e88dfacd53
5 changed files with 155 additions and 131 deletions
52
.github/workflows/main.yml
vendored
Normal file
52
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
name: Main
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
# TODO: something is wrong with TCC, Multiboot 2 info tag struct size
|
||||
#cc: ['gcc', 'clang', 'tcc']
|
||||
cc: ['gcc', 'clang']
|
||||
opt: ['', '-O0', '-O3']
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install clang tcc
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure --enable-tests CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}} -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: check
|
||||
run: make check || (cat test-suite.log && false)
|
||||
- name: install
|
||||
run: sudo make install
|
||||
|
||||
cppcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: cppcheck source code
|
||||
# TODO: don't suppress "src/printf.c"
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress='*:src/printf.c' include/ src/
|
||||
- name: cppcheck examples
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=duplicateExpression --suppress=staticStringCompare examples/
|
||||
- name: cppcheck tests
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=unusedStructMember tests/
|
31
.github/workflows/mruby.yml
vendored
Normal file
31
.github/workflows/mruby.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: mruby
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck rake
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: vendor/mruby
|
||||
name: test
|
||||
run: MRUBY_CONFIG=../../pkgs/mruby/build_config.rb rake test
|
||||
- working-directory: pkgs/mruby
|
||||
name: cppcheck
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability .
|
38
.github/workflows/ruby.yml
vendored
Normal file
38
.github/workflows/ruby.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
name: Ruby
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: pkgs/ruby
|
||||
name: bundle
|
||||
run: bundle install
|
||||
- working-directory: pkgs/ruby
|
||||
name: compile
|
||||
run: rake compile
|
||||
- working-directory: pkgs/ruby
|
||||
name: test & lint
|
||||
run: rake
|
||||
- working-directory: pkgs/ruby
|
||||
name: cppcheck
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability .
|
34
.github/workflows/rust.yml
vendored
Normal file
34
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
components: rustfmt, clippy
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: pkgs/rust
|
||||
name: test
|
||||
run: cargo test
|
||||
- working-directory: pkgs/rust
|
||||
name: fmt
|
||||
run: cargo fmt --check
|
||||
- working-directory: pkgs/rust
|
||||
name: clippy
|
||||
run: cargo clippy
|
131
.github/workflows/test.yml
vendored
131
.github/workflows/test.yml
vendored
|
@ -1,131 +0,0 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
# TODO: something is wrong with TCC, Multiboot 2 info tag struct size
|
||||
#cc: ['gcc', 'clang', 'tcc']
|
||||
cc: ['gcc', 'clang']
|
||||
opt: ['', '-O0', '-O3']
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install clang tcc
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure --enable-tests CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}} -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: check
|
||||
run: make check || (cat test-suite.log && false)
|
||||
- name: install
|
||||
run: sudo make install
|
||||
|
||||
cppcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: cppcheck source code
|
||||
# TODO: don't suppress "src/printf.c"
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress='*:src/printf.c' include/ src/
|
||||
- name: cppcheck examples
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=duplicateExpression --suppress=staticStringCompare examples/
|
||||
- name: cppcheck tests
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=unusedStructMember tests/
|
||||
|
||||
mruby:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck rake
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: vendor/mruby
|
||||
name: test
|
||||
run: MRUBY_CONFIG=../../pkgs/mruby/build_config.rb rake test
|
||||
- working-directory: pkgs/mruby
|
||||
name: cppcheck
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability .
|
||||
|
||||
ruby:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0
|
||||
- name: dependencies
|
||||
run: sudo apt-get --yes install cppcheck
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: pkgs/ruby
|
||||
name: bundle
|
||||
run: bundle install
|
||||
- working-directory: pkgs/ruby
|
||||
name: compile
|
||||
run: rake compile
|
||||
- working-directory: pkgs/ruby
|
||||
name: test & lint
|
||||
run: rake
|
||||
- working-directory: pkgs/ruby
|
||||
name: cppcheck
|
||||
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability .
|
||||
|
||||
rust:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
components: rustfmt, clippy
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure CFLAGS='-O3 -fPIC'
|
||||
- name: make
|
||||
run: make
|
||||
- name: install
|
||||
run: sudo make install
|
||||
- working-directory: pkgs/rust
|
||||
name: test
|
||||
run: cargo test
|
||||
- working-directory: pkgs/rust
|
||||
name: fmt
|
||||
run: cargo fmt --check
|
||||
- working-directory: pkgs/rust
|
||||
name: clippy
|
||||
run: cargo clippy
|
Loading…
Add table
Reference in a new issue