Skip to content

Commit

Permalink
Switch to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Dec 20, 2022
1 parent d4a5820 commit e69f781
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 73 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CMake

on: [push, pull_request]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, macos-12, ubuntu-20.04, ubuntu-22.04]

steps:
- uses: actions/checkout@v3

- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build

- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . --config $BUILD_TYPE

- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: ctest --verbose
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
mindy
=====

.. image:: https://travis-ci.org/dylan-hackers/mindy.svg?branch=master
:target: https://travis-ci.org/dylan-hackers/mindy

Mindy is an implementation of a language that is very much like the
language described in the `Dylan Reference Manual`_ (DRM). Mindy was
named for "Mindy Is Not Dylan Yet", and it still is and will probably
Expand Down
24 changes: 0 additions & 24 deletions circle.yml

This file was deleted.

0 comments on commit e69f781

Please sign in to comment.