sp-dev-fx-webparts/samples/react-jest-testing/devops
Hugo Bernier cd1cb830d6 Changed master to main 2021-05-02 15:04:59 -04:00
..
build azure pipelines setup added (#651) 2018-11-09 09:46:07 +02:00
release azure pipelines setup added (#651) 2018-11-09 09:46:07 +02:00
README.md Changed master to main 2021-05-02 15:04:59 -04:00

README.md

Azure DevOps Pipelines example guide

Summary

This "devops" folder contains scripts that can be used to create fully automated devops pipeline that can pickup the SPFx code from the source control, build it and deploy it to SharePoint Online without any user intervention.

SPFx and Azure Pipelines overview

The example uses Github, but the same pipeline can be used with Azure DevOps git repos.

The example has build and release scripts that can be used with Github as well as with Azure DevOps git repos. I will use the Github since it is free and can be tested by everyone.

Build definition

The build folder has two build definitions. The PRE-BUILD definition ("azure-pipelines-pre-build.yml") is to be run before the code goes to the main branch to verify that the code will not break the existing branch. The BUILD definition ("azure-pipelines-build.yaml") is to be run after the new code is merged into the main branch.

Release definitions

The release pipeline includes office-365-CLI-add-app.sh script and will be using Nodejs and Office 365 CLI to deploy the built artifacts to SharePoint app catalog.

How to enable Azure DevOps Pipelines with Github

There is a good article on how to do that here: https://blog.github.com/2018-09-10-azure-pipelines-now-available-in-github-marketplace/

Build pipeline and running the build

  1. Install the Azure Pipelines to your Github account https://github.com/marketplace/azure-pipelines
  2. Create new repository or attach the pipelines to existing repository here: https://github.com/settings/installations

Config Azure Pipelines

  1. Click the configure button and set it up to run with all repositories or specific one

Config Azure Pipelines set repos

  1. Go to the repo you configured to work with Azure Pipelines

Config Azure Pipelines repo config

  1. Once you click on the Save button you will be redirected to Azure Pipelines to create your new project

Config Azure Pipelines repo config

  1. Select the repository to the new pipeline

Config Azure Pipelines repo config

  1. The pipelines will try to smart guess the project type and suggest a build definition for you. Select the node option (since we do not have choice to skip), but bear in mind we will change that with our existing template from the example.

Config Azure Pipelines repo config

  1. Click save and run to test the template using the main branch.

Note: We will replace the default suggested template with one that already exists in the sample to speed up the guide.

  1. Click on the Builds. Then select the build definition and click the EDIT button

Config Azure Pipelines repo config

  1. Change the name of your build to something more meaningfull for you.
  2. Change the host agents to Ubuntu or Linux

Config Azure Pipelines repo config

  1. Click on the YAML file path far right button. Replace the defult template by template we already have in this source code example

Config Azure Pipelines repo config

  1. This will change the build definition with the one we have from the source control.
  2. Save and Queue then click on the build link to see how the tasks are performed

Config Azure Pipelines repo config

  1. All tasks from the build shoudl execute successfully and two artifact items should be created out of the build

Config Azure Pipelines repo config

Congrats! The build is done!

The build will generate two artifacts

  • SPFx sppkg that will be deployed using release pipeline
  • Office 365 CLI scripts that will used as task in the release pipeline

Release pipeline and automation of the full pipeline all the way to SharePoint Online site

Authenticate the Office 365 CLI to automate processes on your tenant

If you have not used the Office 365 CLI tool on your tenant you have to agree with concent that the CLI tool can execute actions so you have to

npm i -g @pnp/office365-cli
o365 spo login https://contoso.sharepoint.com

Once you agree with the consent you can use it in the Release pipeline.

Create the release pipeline

  1. Select release on the left menu then new release pipeline

Config Azure Pipelines repo config

  1. Add the artifacts built from the build

Config Azure Pipelines repo config

  1. Select your project, source (build pipeline) and rename the source alias to "_SPFx build" for this example.

Config Azure Pipelines repo config Note: The source alias ("_SPFx build") can be changed to any name, but the bash script later is using that one this is why for this specific example we use that specific name.

  1. Enable the releace pipeline to be triggered every time new code is pushed to the main branch.

Config Azure Pipelines repo config Config Azure Pipelines repo config

  1. Click empty job since the tasks we want are not in the quick select list. Click on the tasks link as on the picture below

Config Azure Pipelines repo config

  1. Click on the job agent first and change the agent pool to Hosted Ubuntu 1604 or linux

Config Azure Pipelines repo config

  1. Use the plus sign on the Agent job task to add another task

Config Azure Pipelines repo config

  1. Search for node in the search box on the far right

Config Azure Pipelines repo config

  1. Add it. Click on the new task and change the version from 6.x to 8.x

Config Azure Pipelines repo config

  1. Use the same Agent job plus sign to add another task this time search for bash

Config Azure Pipelines repo config

  1. Add the Office 365 CLI bash script from our repo.

Config Azure Pipelines repo config

The script is very simple, but it will connect to your SharePoint online app catalog and upload the sppkg.

SITE_URL=$1
EMAIL=$2
PASS=$3

npm i -g @pnp/office365-cli
o365 version

o365 spo login $SITE_URL --authType password --userName $EMAIL --password $PASS

o365 spo app add --filePath "./_SPFx build/SPFx sppkg/react-jest-testing.sppkg" --overwrite --verbose

As we can see the script requires three params and this is the last step in that tutorial before we run the release

  1. Set release pipeline secure variables. Since the script requires 3 arguments to be passed we have to use the arguments input to pass them. So for now just type $(siteurl) $(email) $(password) in the input field and we will set them up after.

Config Azure Pipelines repo config

  1. Set the variables that will be used by the script under the release pipeline variables as on the picture below

Config Azure Pipelines repo config Note: You can use password like fields to hide sensitive or secret values.

Now we should be good to go

The next code merged with the main branch in Github should trigger the fully automated devops pipeline and deploy that built package all the way to the SharePoint online app catalog.

Here is the release pipeline executed successfully and also the sppkg file deployed to the app catalog.

Config Azure Pipelines repo config Config Azure Pipelines repo config