Skip to content

Commit

Permalink
Migrate CI to GitHub workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
mity committed Dec 24, 2023
1 parent 9d25aa6 commit 00b19d1
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 63 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build

on:
- pull_request
- push

jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -G 'Unix Makefiles' .
- name: Build
run: make VERBOSE=1

windows-32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: microsoft/setup-msbuild@v1.3.1
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 17 2022" -A Win32 .
- name: Build
run: msbuild.exe acutest.sln /p:Configuration=Release /p:Platform=Win32

windows-64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: microsoft/setup-msbuild@v1.3.1
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 17 2022" -A x64 .
- name: Build
run: msbuild.exe acutest.sln /p:Configuration=Release /p:Platform=x64
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[![Linux Build Status (travis-ci.com)](https://img.shields.io/travis/mity/acutest/master.svg?logo=linux&label=linux%20build)](https://travis-ci.com/mity/acutest)
[![Windows Build Status (appveyor.com)](https://img.shields.io/appveyor/ci/mity/acutest/master.svg?logo=windows&label=windows%20build)](https://ci.appveyor.com/project/mity/acutest/branch/master)


# Acutest Readme

Expand Down
26 changes: 0 additions & 26 deletions appveyor.yml

This file was deleted.

0 comments on commit 00b19d1

Please sign in to comment.