Skip to content

Commit

Permalink
Add basic CMake github action
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Feb 18, 2024
1 parent c0996e9 commit e1ebb28
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 20 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CMake

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
linux-build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.1

- name: CMake workflow
run: cmake --workflow --preset default

windows-build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4.1.1

- name: CMake workflow
run: cmake --workflow --preset default
5 changes: 3 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![Travis Build Status](https://api.travis-ci.org/LegalizeAdulthood/iterated-dynamics.png?branch=master)](https://travis-ci.org/LegalizeAdulthood/iterated-dynamics)
[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/0k69hj9n28u0c3rj?svg=true)](https://ci.appveyor.com/project/LegalizeAdulthood/iterated-dynamics)
[![CMake workflow](https://github.com/LegalizeAdulthood/iterated-dynamics/actions/workflows/cmake.yml/badge.svg)](https://github.com/LegalizeAdulthood/iterated-dynamics/actions/workflows/cmake.yml)

# Iterated Dynamics

Iterated Dynamics is an open source fractal renderer that can generate
the following fractal types:
Expand Down
18 changes: 0 additions & 18 deletions appveyor.yml

This file was deleted.

0 comments on commit e1ebb28

Please sign in to comment.