From 1d86cd860ecceed47b05fe399dba02d98fdf3545 Mon Sep 17 00:00:00 2001 From: Theo13111 <88277215+Theo13111@users.noreply.github.com> Date: Tue, 15 Mar 2022 21:31:18 +0700 Subject: [PATCH 1/2] Set up CI with Azure Pipelines Azure [skip ci] --- azure-pipelines.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..16917b9 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,39 @@ +# Go +# Build your Go project. +# Add steps that test, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/go + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +variables: + GOBIN: '$(GOPATH)/bin' # Go binaries path + GOROOT: '/usr/local/go1.11' # Go installation path + GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path + modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code + +steps: +- script: | + mkdir -p '$(GOBIN)' + mkdir -p '$(GOPATH)/pkg' + mkdir -p '$(modulePath)' + shopt -s extglob + shopt -s dotglob + mv !(gopath) '$(modulePath)' + echo '##vso[task.prependpath]$(GOBIN)' + echo '##vso[task.prependpath]$(GOROOT)/bin' + displayName: 'Set up the Go workspace' + +- script: | + go version + go get -v -t -d ./... + if [ -f Gopkg.toml ]; then + curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh + dep ensure + fi + go build -v . + workingDirectory: '$(modulePath)' + displayName: 'Get dependencies, then build' From 6cf1d4d5442fb3f9d1848f90bcabd804f425b57e Mon Sep 17 00:00:00 2001 From: Theo13111 <88277215+Theo13111@users.noreply.github.com> Date: Fri, 24 Jun 2022 02:30:19 +0700 Subject: [PATCH 2/2] Set up CI with Azure Pipelines test [skip ci] --- azure-pipelines-1.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines-1.yml diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml new file mode 100644 index 0000000..4b23634 --- /dev/null +++ b/azure-pipelines-1.yml @@ -0,0 +1,20 @@ +# Android +# Build your Android project with Gradle. +# Add steps that test, sign, and distribute the APK, save build artifacts, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/android + +trigger: +- master + +pool: + vmImage: 'macos-latest' + +steps: +- task: Gradle@2 + inputs: + workingDirectory: '' + gradleWrapperFile: 'gradlew' + gradleOptions: '-Xmx3072m' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + tasks: 'assembleDebug'