Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch to github actions, kill travis #41

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
name: CI
on:
push:
branches:
- github*
- master
tags:
- '*'
pull_request:
branches:
- '**'
schedule:
- cron: 0 0 * * *
jobs:
ci:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
otp_vsn:
- 'latest'
# - '24.0'
# - '23.3'
# - '23.2'
# - '23.1'
# - '23'
# - '22.3'
# - '22.2'
# - '22.1'
# - '22'
# - '21.3'
# - '21.2'
# - '21.1'
# - '21'
# - '20.3'
# - '20.2'
# - '20.1'
# - '20'
# - '19.3'
# - '19.2'
# - '19.1'
# - '19'
name: 'ci-erl:${{ matrix.otp_vsn }}'
runs-on: ubuntu-latest
container:
image: 'erlang:${{ matrix.otp_vsn }}'
steps:
- shell: bash
run: |
apt-get update
apt-get -y install tcl tcl-dev gettext
cd /usr/src/
wget https://github.com/git/git/archive/v2.18.0.tar.gz -O git.tar.gz
tar -xf git.tar.gz
cd git-*
make prefix=/usr/local all
make prefix=/usr/local install
- uses: actions/checkout@v2
with:
fetch-depth: 0

- shell: bash
run: autoconf
- shell: bash
run: ./configure
- shell: bash
run: make
- shell: bash
run: make test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.