Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: 2025 Andrea Pappacoda <andrea@pappacoda.it>
# SPDX-License-Identifier: MIT

name: build

on: push

permissions:
contents: read

jobs:
build:
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Configure
run: cmake -B build

- name: Build
run: cmake --build build --parallel

- name: Test
working-directory: build
run: ctest --verbose
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ test/

# Generated source files
src/common/scm_rev.cpp
.travis.descriptor.json

# Project/editor files
*.swp
Expand Down
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .travis/linux-build.sh

This file was deleted.

13 changes: 0 additions & 13 deletions .travis/macos-build.sh

This file was deleted.

11 changes: 0 additions & 11 deletions .travis/windows-build.sh

This file was deleted.

6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,14 @@ else()
-pedantic
-pedantic-errors
-Wfatal-errors
-Wno-error=maybe-uninitialized
-Wno-missing-braces
-Wno-unused-parameter)

if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
list(APPEND TEAKRA_CXX_FLAGS
-Wno-error=maybe-uninitialized)
endif()

if (TEAKRA_WARNINGS_AS_ERRORS)
list(APPEND TEAKRA_CXX_FLAGS
-Werror)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Teakra

[![Build Status](https://travis-ci.com/wwylele/teakra.svg?branch=master)](https://travis-ci.com/wwylele/teakra)
[![Build Status](https://github.com/wwylele/teakra/actions/workflows/build.yaml/badge.svg)](https://github.com/wwylele/teakra/actions/workflows/build.yaml)
[![Build status](https://ci.appveyor.com/api/projects/status/mxr5tg4v8dafyqec/branch/master?svg=true)](https://ci.appveyor.com/project/wwylele/teakra/branch/master)

Emulator, (dis-)assembler, tools and documentation for XpertTeak, the DSP used by DSi/3DS.
Expand Down