Skip to content

ci

ci #50

Workflow file for this run

name: ci
on:
workflow_dispatch:
pull_request:
jobs:
go-lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v4
- name: Run linters
uses: golangci/golangci-lint-action@v4
with:
version: latest
args: --timeout=3m
go-test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: go tests
run: go test -v -covermode=count -json ./... > test.json
- name: annotate go tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json
test:
runs-on: ubuntu-latest
env:
BATON_LOG_LEVEL: debug
# The following parameters are passed to grant/revoke commands
# Change these to the correct IDs for your test data
CONNECTOR_GRANT: ''
CONNECTOR_ENTITLEMENT: ''
CONNECTOR_PRINCIPAL: ''
CONNECTOR_PRINCIPAL_TYPE: ''
BATON_EMAIL: [email protected]
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v3
- name: Install Teleport
uses: teleport-actions/setup@v1
with:
version: 14.0.0
# - name: start tsh
# run: |
# tsh login --proxy=d3v-conductorone.teleport.sh --user=BATON_EMAIL
# tctl status
- name: Authorize against Teleport
id: auth
uses: teleport-actions/auth@v2
with:
proxy: d3v-conductorone.teleport.sh:443
token: 00000000000000000000000000000000
certificate-ttl: 1h
anonymous-telemetry: 1
- name: Create bot-token
run: tctl create -f bot-token.yaml
# - name: Enable anonymous telemetry
# run: export TELEPORT_ANONYMOUS_TELEMETRY=1
# - name: Create a bot
# run: tbot start --destination-dir=./tbot-user --token=00000000000000000000000000000000 --ca-pin=sha256:abdc1245efgh5678abdc1245efgh5678abdc1245efgh5678abdc1245efgh5678 --auth-server=d3v-conductorone.teleport.sh:3025
# - name: check tsh version
# run: tsh version
# - name: check tctl version
# run: tctl version
# - name: Add teleport.yaml
# run: sudo teleport configure -o file --acme --acme-email=BATON_EMAIL --cluster-name=BATON_PROXYADDR
# - name: Running Teleport
# run: sudo teleport start --config="/etc/teleport.yaml"
- name: Build baton-teleport
run: go build ./cmd/baton-teleport
# - name: Run baton-teleport
# run: ./baton-teleport
- name: Install baton
run: ./scripts/get-baton.sh && mv baton /usr/local/bin
- name: Check for grant before revoking
if: env.CONNECTOR_ENTITLEMENT != '' && env.CONNECTOR_PRINCIPAL != ''
run: baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\""
- name: Revoke grants
if: env.CONNECTOR_GRANT != ''
run: ./baton-baton-teleport --revoke-grant="${{ env.CONNECTOR_GRANT }}"
- name: Check grant was revoked
if: env.CONNECTOR_ENTITLEMENT != '' && env.CONNECTOR_PRINCIPAL != ''
run: ./baton-teleport && baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status "if .grants then .grants[]?.principal.id.resource != \"${{ env.CONNECTOR_PRINCIPAL }}\" else . end"
- name: Grant entitlement
if: env.CONNECTOR_ENTITLEMENT != '' && env.CONNECTOR_PRINCIPAL != '' && env.CONNECTOR_PRINCIPAL_TYPE != ''
run: ./baton-teleport --grant-entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --grant-principal="${{ env.CONNECTOR_PRINCIPAL }}" --grant-principal-type="${{ env.CONNECTOR_PRINCIPAL_TYPE }}"
- name: Check grant was re-granted
if: env.CONNECTOR_ENTITLEMENT != '' && env.CONNECTOR_PRINCIPAL != ''
run: baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\""