Skip to content

Commit

Permalink
actions: remove travis
Browse files Browse the repository at this point in the history
We removed them from the main repo, lets remove them here too.

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
  • Loading branch information
cujomalainey committed Sep 17, 2021
1 parent 9716e10 commit 66b9025
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 22 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# Basic build test

name: build

on: [pull_request, push, workflow_dispatch]

jobs:
build-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with: {fetch-depth: 50, submodules: recursive}

- name: install cmake
run: sudo apt update
- run: sudo apt install -y cmake

- name: build
- run: cmake -B build/ && make -Werror -Wall -Wmissing-prototypes -Wimplicit-fallthrough=3 -Wpointer-arith -C build/
14 changes: 14 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,17 @@ jobs:

- name: run yamllint
run: yamllint .github/workflows/*.yml
checkpatch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with: {fetch-depth: 50, submodules: recursive}

- name: install codespell
run: sudo apt update
- run: sudo apt install -y codespell

- name: run codespell
run: |
# show what we got
git --no-pager log --oneline --graph --decorate --max-count=50
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit 66b9025

Please sign in to comment.