From 2f50fc1dfbb777dd0f1845a02b1771f07400b13f Mon Sep 17 00:00:00 2001 From: Brad Nissen Date: Tue, 9 Jul 2019 19:03:20 -0700 Subject: [PATCH 1/5] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..aa91291 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From 5ddefce1d109ab9b81439c631f304039d9d66628 Mon Sep 17 00:00:00 2001 From: Brad Nissen Date: Tue, 9 Jul 2019 19:06:24 -0700 Subject: [PATCH 2/5] Added Azure CI pipeline badge to READMe.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d29ea26..6be0efb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ [![northseattle.dev](https://raw.githubusercontent.com/north-seattle/website/master/artwork/banner.png)](https://northseattle.dev) =================== +[![Build Status](https://dev.azure.com/bigbradtime/NSCwebsite/_apis/build/status/bigTimeBrad.website?branchName=master)](https://dev.azure.com/bigbradtime/NSCwebsite/_build/latest?definitionId=4&branchName=master) +=================== This repository contains the code and source content that powers northseattle.dev - a website for North Seattle Tech Talks and Open Source Hackathons. This project is made possible by the contributions of [many contributors](https://github.com/north-seattle/website/blob/master/ACKNOWLEDGEMENTS.md). From ab21ea89783e610acd0d8b754da69f1eb5991b76 Mon Sep 17 00:00:00 2001 From: Brad Nissen Date: Tue, 9 Jul 2019 19:12:07 -0700 Subject: [PATCH 3/5] Added emoji to README to kick off the CI build in AzureDevops --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6be0efb..dfc86fd 100644 --- a/README.md +++ b/README.md @@ -77,4 +77,4 @@ Once the content is added to the master branch it will automatically be deployed - `pelican` 3. Start a local pelican server - `pelican --listen` -4. Navigate to [localhost:8000](http://localhost:8000/) in your browser :) +4. Navigate to [localhost:8000](http://localhost:8000/) in your browser :smile: From 114ce603527d2c2940a285ebd5549d48fb7a2619 Mon Sep 17 00:00:00 2001 From: Brad Nissen Date: Tue, 9 Jul 2019 19:16:40 -0700 Subject: [PATCH 4/5] changed pipeline comments --- azure-pipelines.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa91291..61fb2d2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,5 +1,3 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml @@ -10,7 +8,7 @@ pool: vmImage: 'ubuntu-latest' steps: -- script: echo Hello, world! +- script: echo NSC Tech Talks! displayName: 'Run a one-line script' - script: | From 1f2ee5471d5aa2c707fcfa3b3986e67028415eca Mon Sep 17 00:00:00 2001 From: Brad Nissen Date: Tue, 9 Jul 2019 19:33:06 -0700 Subject: [PATCH 5/5] Removed azure-pipeline and added some sweet badges to the ReadMe.md --- README.md | 7 ++++++- azure-pipelines.yml | 17 ----------------- 2 files changed, 6 insertions(+), 18 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/README.md b/README.md index dfc86fd..a88fd86 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ [![northseattle.dev](https://raw.githubusercontent.com/north-seattle/website/master/artwork/banner.png)](https://northseattle.dev) =================== -[![Build Status](https://dev.azure.com/bigbradtime/NSCwebsite/_apis/build/status/bigTimeBrad.website?branchName=master)](https://dev.azure.com/bigbradtime/NSCwebsite/_build/latest?definitionId=4&branchName=master) + +[![Build Status](https://travis-ci.org/north-seattle/website.svg?branch=master)](https://travis-ci.org/north-seattle/website) +![Bugzilla bug status](https://img.shields.io/github/contributors/north-seattle/website.svg?color=blue) +![Bugzilla bug status](https://img.shields.io/github/forks/north-seattle/website.svg?label=Forks&style=social) + + =================== This repository contains the code and source content that powers northseattle.dev - a website for North Seattle Tech Talks and Open Source Hackathons. diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 61fb2d2..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - -trigger: -- master - -pool: - vmImage: 'ubuntu-latest' - -steps: -- script: echo NSC Tech Talks! - displayName: 'Run a one-line script' - -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script'