Add support to analyze and package studio projects #396
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
env: | |
UIPATHCLI_BASE_VERSION: "v2.0" | |
GO_VERSION: "1.22.2" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
UIPATHCLI_VERSION: ${{ steps.version.outputs.UIPATHCLI_VERSION }} | |
env: | |
CGO_ENABLED: "0" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Version | |
id: version | |
run: | | |
UIPATHCLI_VERSION=$(./version.sh "$UIPATHCLI_BASE_VERSION") | |
echo "UIPATHCLI_VERSION=$(echo $UIPATHCLI_VERSION)" >> $GITHUB_ENV | |
echo "UIPATHCLI_VERSION=$(echo $UIPATHCLI_VERSION)" >> $GITHUB_OUTPUT | |
- name: Build | |
run: go build -ldflags="-X github.com/UiPath/uipathcli/commandline.Version=$UIPATHCLI_VERSION" . | |
- name: Lint | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/[email protected] | |
golangci-lint run | |
- name: Package | |
run: ./build.sh && ./package.sh | |
- name: Upload packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
if-no-files-found: error | |
test_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Test | |
run: go test -coverprofile="coverage.out" -coverpkg "$(go list github.com/UiPath/uipathcli/... | grep -v 'test' | tr '\n' ',')" ./... | |
- name: Coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
go install github.com/mattn/goveralls@latest | |
goveralls -coverprofile="coverage.out" -service="github" | |
test_windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Test | |
run: go test ./... | |
test_macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Test | |
run: go test ./... | |
publish_pages: | |
needs: [build, test_linux, test_windows, test_macos] | |
permissions: | |
pages: write | |
id-token: write | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Generate commands | |
run: | | |
tar -xzvf build/packages/uipathcli-linux-amd64.tar.gz | |
./uipath commands show > documentation/commands.json | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: 'documentation' | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
release: | |
needs: [build, test_linux, test_windows, test_macos] | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
env: | |
UIPATHCLI_VERSION: ${{ needs.build.outputs.UIPATHCLI_VERSION }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Publish | |
run: ./publish.sh "$UIPATHCLI_VERSION" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |