Add github actions for CI.

This commit is contained in:
Shishir Mahajan 2021-01-29 16:38:17 -08:00
parent 5e1a6216c5
commit d8a068d329
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
5 changed files with 15 additions and 18 deletions

View File

@ -1,8 +0,0 @@
version: 2
jobs:
build:
machine: true
working_directory: ~/go/src/github.com/Roblox/nomad-driver-containerd
steps:
- checkout
- run: make test

View File

@ -1,9 +1,8 @@
name: config
name: CI
on:
pull_request:
branches: [ master ]
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
@ -12,4 +11,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run containerd-driver integration tests
run: make test
run: |
mkdir -p /home/runner/go/src/github.com/Roblox
ln -s /home/runner/work/nomad-driver-containerd/nomad-driver-containerd /home/runner/go/src/github.com/Roblox/nomad-driver-containerd
cd /home/runner/go/src/github.com/Roblox/nomad-driver-containerd
make test

View File

@ -1,5 +1,5 @@
# nomad-driver-containerd
[![CircleCI](https://circleci-github.rcs.simulpong.com/gh/Roblox/nomad-driver-containerd/tree/master.svg?style=shield&circle-token=559609ed9ed99da393798c76f4db004f3cd66801)](https://circleci-github.rcs.simulpong.com/gh/Roblox/nomad-driver-containerd/tree/master)
[![CI Actions Status](https://github.com/Roblox/nomad-driver-containerd/workflows/CI/badge.svg)](https://github.com/Roblox/nomad-driver-containerd/actions)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Roblox/nomad-driver-containerd/blob/master/LICENSE)
[![Release](https://img.shields.io/badge/version-0.6-blue)](https://github.com/Roblox/nomad-driver-containerd/releases/tag/v0.6)

View File

@ -6,10 +6,10 @@ export NOMAD_VERSION=1.0.2
export CONTAINERD_VERSION=1.3.4
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:/usr/local/bin
if [ -e /home/circleci ]; then
export GOPATH=/home/circleci/go
if [ -e /home/runner ]; then
export GOPATH=/home/runner/go
else
export GOPATH=$HOME/go
export GOPATH=$HOME/go
fi
export GO_VERSION=1.14.3
export SRCDIR=`dirname $0`
@ -60,7 +60,7 @@ run_tests() {
}
warn_on_local_host() {
if [[ -z "$CIRCLECI" || "$CIRCLECI" != "true" ]]; then
if [[ -z "$GITHUB_ACTIONS" || "$GITHUB_ACTIONS" != "true" ]]; then
echo "WARNING: Local host detected."
echo "WARNING: These tests are designed to be run as part of continous integration (CI) and not recommended to be run on local host."
echo "WARNING: These tests are destructive and can modify (or destroy) software on your host system."
@ -75,7 +75,7 @@ warn_on_local_host() {
}
setup() {
if [[ -z "$CIRCLECI" || "$CIRCLECI" != "true" ]]; then
if [[ -z "$GITHUB_ACTIONS" || "$GITHUB_ACTIONS" != "true" ]]; then
echo "INFO: Running tests on local host (vagrant VM). Setup is not required."
return 0
fi
@ -128,6 +128,8 @@ EOF
sudo mv containerd.service /lib/systemd/system/containerd.service
sudo systemctl daemon-reload
echo "INFO: Unmask containerd.service"
sudo systemctl unmask containerd
echo "INFO: Starting containerd daemon."
sudo systemctl start containerd
is_systemd_service_active "containerd.service"

View File

@ -11,7 +11,7 @@ is_container_active() {
if [ $? -eq 0 ]; then
echo "INFO: ${job_name} container is up and running"
if [ "$is_sleep" = true ]; then
sleep 5s
sleep 7s
fi
break
fi