mirror of
https://github.com/nzp-team/vhlt.git
synced 2024-11-21 19:32:27 +00:00
Remove travis-ci. Add github workflow
This commit is contained in:
parent
4e308530f4
commit
bc109ae90e
3 changed files with 26 additions and 11 deletions
25
.github/workflows/.github.yml
vendored
Normal file
25
.github/workflows/.github.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
compiler: [gcc, clang]
|
||||
include:
|
||||
- cc: gcc
|
||||
cxx: g++
|
||||
- cc: clang
|
||||
cxx: clang++
|
||||
env:
|
||||
CC: ${{ matrix.cc }}
|
||||
CXX: ${{ matrix.cxx }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: |
|
||||
make
|
10
.travis.yml
10
.travis.yml
|
@ -1,10 +0,0 @@
|
|||
language: cpp
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
script:
|
||||
- make
|
|
@ -1,6 +1,6 @@
|
|||
# Vluzacn ZHLT
|
||||
|
||||
[![Build Status](https://travis-ci.org/FreeSlave/vhlt.svg?branch=master)](https://travis-ci.org/FreeSlave/vhlt)
|
||||
[![Build Status](https://github.com/FreeSlave/vhlt/actions/workflows/.github.yml/badge.svg?branch=master)](https://github.com/FreeSlave/vhlt/actions/workflows/.github.yml)
|
||||
|
||||
Custom Zoner's Half-Life Tools created by vluzacn. This is not my project, I just need repository here to add support for determining of the number of threads on posix systems.
|
||||
|
||||
|
|
Loading…
Reference in a new issue