Add github actions for CI.
This commit is contained in:
parent
5e1a6216c5
commit
d8a068d329
@ -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
|
9
.github/workflows/config.yml
vendored
9
.github/workflows/config.yml
vendored
@ -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
|
||||
|
@ -1,5 +1,5 @@
|
||||
# nomad-driver-containerd
|
||||
[](https://circleci-github.rcs.simulpong.com/gh/Roblox/nomad-driver-containerd/tree/master)
|
||||
[](https://github.com/Roblox/nomad-driver-containerd/actions)
|
||||
[](https://github.com/Roblox/nomad-driver-containerd/blob/master/LICENSE)
|
||||
[](https://github.com/Roblox/nomad-driver-containerd/releases/tag/v0.6)
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user