mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-05 04:34:23 +02:00
Migrate CI from travis-ci.com to GitHub Actions
This commit is contained in:
parent
630e0104d5
commit
43df7d5331
9 changed files with 57 additions and 27 deletions
27
.github/workflows/main.yml
vendored
Normal file
27
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build-nixos:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build for supported platforms on NixOS
|
||||
run: docker-compose run build-nixos
|
||||
build-archlinux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build for supported platforms on Arch Linux
|
||||
run: docker-compose run build-archlinux
|
||||
build-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build for supported platforms on Ubuntu
|
||||
run: docker-compose run build-ubuntu
|
Loading…
Add table
Add a link
Reference in a new issue