Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
move from Travis-CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lspgn committed Nov 24, 2020
1 parent 74d90fb commit 55e0d1f
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 47 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Go

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

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14

- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: '0'

- name: Test & Vet
run: make test vet

- name: Build
run: |
GOOS=linux make build-octorpki
GOOS=darwin make build-octorpki
GOOS=windows EXTENSION=.exe make build-octorpki
- name: Install fpm
run: |
sudo apt-get update
sudo apt-get install -y rpm ruby ruby-dev
sudo gem install fpm
- name: Package
run: make package-deb-octorpki package-rpm-octorpki

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/*
retention-days: 14
65 changes: 65 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14

- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: '0'

- name: Build
run: |
GOOS=linux make build-octorpki
GOOS=darwin make build-octorpki
GOOS=windows EXTENSION=.exe make build-octorpki
- name: Install fpm
run: |
sudo apt-get update
sudo apt-get install -y rpm ruby ruby-dev
sudo gem install fpm
- name: Package
run: make package-deb-octorpki package-rpm-octorpki

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
uses: actions/github-script@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const fs = require('fs').promises;
const upload_url = '${{ steps.create_release.outputs.upload_url }}';
for (let file of await fs.readdir('./dist')) {
console.log('uploading', file);
await github.repos.uploadReleaseAsset({
url: upload_url,
name: file,
data: await fs.readFile(`./dist/${file}`)
});
}
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloudflare RPKI Validator Tools and Libraries

[![Build Status](https://travis-ci.org/cloudflare/cfrpki.svg?branch=master)](https://travis-ci.org/cloudflare/cfrpki)
[![Build Status](https://github.com/cloudflare/cfrpki/workflows/Go/badge.svg)](https://github.com/cloudflare/cfrpki/actions?query=workflow%3AGo)

<img align="left" src="resources/octorpki.png" alt="Cloudflare OctoRPKI logo">

Expand Down

0 comments on commit 55e0d1f

Please sign in to comment.