Merge pull request #451 from carabasdaniel/pdkupdate

PDK Update for GA workflows
This commit is contained in:
sheenaajay
2020-11-25 10:16:52 +00:00
committed by GitHub
4 changed files with 235 additions and 62 deletions

View File

@@ -3,7 +3,6 @@ name: "nightly"
on: on:
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
workflow_dispatch:
env: env:
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6 HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6
@@ -15,35 +14,63 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
outputs: outputs:
matrix: ${{ steps.get-matrix.outputs.matrix }} matrix: ${{ steps.get-matrix.outputs.matrix }}
steps: steps:
- name: "Honeycomb: Start recording"
uses: kvrhdn/gha-buildevents@v1.0.2
with:
apikey: ${{ env.HONEYCOMB_WRITEKEY }}
dataset: ${{ env.HONEYCOMB_DATASET }}
job-status: ${{ job.status }}
- name: "Honeycomb: Start first step"
run: |
echo STEP_ID=0 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Checkout Source - name: Checkout Source
uses: actions/checkout@v2 uses: actions/checkout@v2
if: ${{ github.repository_owner == 'puppetlabs' }}
- name: Activate Ruby 2.7 - name: Activate Ruby 2.7
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
if: ${{ github.repository_owner == 'puppetlabs' }}
with: with:
ruby-version: "2.7" ruby-version: "2.7"
- name: Cache gems - name: Cache gems
uses: actions/cache@v2 uses: actions/cache@v2
if: ${{ github.repository_owner == 'puppetlabs' }}
with: with:
path: vendor/gems path: vendor/gems
key: ${{ runner.os }}-nightly-${{ hashFiles('**/Gemfile') }} key: ${{ runner.os }}-${{ github.event_name }}-${{ hashFiles('**/Gemfile') }}
restore-keys: | restore-keys: |
${{ runner.os }}-nightly- ${{ runner.os }}-${{ github.event_name }}-
${{ runner.os }}- ${{ runner.os }}-
- name: Install gems - name: Install gems
if: ${{ github.repository_owner == 'puppetlabs' }}
run: | run: |
bundle config path vendor/gems buildevents cmd $TRACE_ID $STEP_ID 'bundle config path vendor/gems' -- bundle config path vendor/gems
bundle config jobs 8 buildevents cmd $TRACE_ID $STEP_ID 'bundle config jobs 8' -- bundle config jobs 8
bundle config retry 3 buildevents cmd $TRACE_ID $STEP_ID 'bundle config retry 3' -- bundle config retry 3
bundle install buildevents cmd $TRACE_ID $STEP_ID 'bundle install' -- bundle install
bundle clean buildevents cmd $TRACE_ID $STEP_ID 'bundle clean' -- bundle clean
- name: Setup Acceptance Test Matrix - name: Setup Acceptance Test Matrix
id: get-matrix id: get-matrix
run: "bundle exec matrix_from_metadata" if: ${{ github.repository_owner == 'puppetlabs' }}
run: |
if [ '${{ github.repository_owner }}' == 'puppetlabs' ]; then
buildevents cmd $TRACE_ID $STEP_ID matrix_from_metadata -- bundle exec matrix_from_metadata
else
echo "::set-output name=matrix::{}"
fi
- name: "Honeycomb: Record setup time"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Setup Test Matrix'
Acceptance: Acceptance:
needs: needs:
@@ -54,7 +81,27 @@ jobs:
fail-fast: false fail-fast: false
matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}} matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}}
env:
BUILDEVENT_FILE: '../buildevents.txt'
steps: steps:
- run: |
echo 'platform=${{ matrix.platform }}' >> $BUILDEVENT_FILE
echo 'collection=${{ matrix.collection }}' >> $BUILDEVENT_FILE
- name: "Honeycomb: Start recording"
uses: kvrhdn/gha-buildevents@v1.0.2
with:
apikey: ${{ env.HONEYCOMB_WRITEKEY }}
dataset: ${{ env.HONEYCOMB_DATASET }}
job-status: ${{ job.status }}
matrix-key: ${{ matrix.platform }}-${{ matrix.collection }}
- name: "Honeycomb: start first step"
run: |
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-1 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Checkout Source - name: Checkout Source
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -67,26 +114,39 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: vendor/gems path: vendor/gems
key: ${{ runner.os }}-nightly-${{ hashFiles('**/Gemfile') }} key: ${{ runner.os }}-${{ github.event_name }}-${{ hashFiles('**/Gemfile') }}
restore-keys: | restore-keys: |
${{ runner.os }}-nightly- ${{ runner.os }}-${{ github.event_name }}-
${{ runner.os }}- ${{ runner.os }}-
- name: Install gems - name: "Honeycomb: Record cache setup time"
if: ${{ always() }}
run: | run: |
bundle config path vendor/gems buildevents step $TRACE_ID $STEP_ID $STEP_START 'Cache retrieval'
bundle config jobs 8 echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-2 >> $GITHUB_ENV
bundle config retry 3 echo STEP_START=$(date +%s) >> $GITHUB_ENV
bundle install
bundle clean
- name: bundler environment - name: Bundler Setup
run: | run: |
bundle env buildevents cmd $TRACE_ID $STEP_ID 'bundle config path vendor/gems' -- bundle config path vendor/gems
buildevents cmd $TRACE_ID $STEP_ID 'bundle config jobs 8' -- bundle config jobs 8
buildevents cmd $TRACE_ID $STEP_ID 'bundle config retry 3' -- bundle config retry 3
buildevents cmd $TRACE_ID $STEP_ID 'bundle install' -- bundle install
buildevents cmd $TRACE_ID $STEP_ID 'bundle clean' -- bundle clean
echo ::group::bundler environment
buildevents cmd $TRACE_ID $STEP_ID 'bundle env' -- bundle env
echo ::endgroup::
- name: "Honeycomb: Record Bundler Setup time"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Bundler Setup'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-3 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Provision test environment - name: Provision test environment
run: | run: |
bundle exec rake 'litmus:provision[provision::provision_service,${{ matrix.platform }}]' buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:provision ${{ matrix.platform }}' -- bundle exec rake 'litmus:provision[provision::provision_service,${{ matrix.platform }}]'
echo ::group::=== REQUEST === echo ::group::=== REQUEST ===
cat request.json || true cat request.json || true
echo echo
@@ -103,8 +163,8 @@ jobs:
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 5 max_attempts: 5
retry_wait_seconds: 90 retry_wait_seconds: 60
command: bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]' command: buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:install_agent ${{ matrix.collection }}' -- bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'
# The agent installer on windows does not finish in time for this to work. To # The agent installer on windows does not finish in time for this to work. To
# work around this for now, retry after a minute if installing the module failed. # work around this for now, retry after a minute if installing the module failed.
@@ -112,21 +172,45 @@ jobs:
uses: nick-invision/retry@v1 uses: nick-invision/retry@v1
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 5 max_attempts: 2
retry_wait_seconds: 60 retry_wait_seconds: 60
command: bundle exec rake 'litmus:install_module' command: buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:install_module' -- bundle exec rake 'litmus:install_module'
- name: "Honeycomb: Record deployment times"
if: ${{ always() }}
run: |
echo ::group::honeycomb step
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Deploy test system'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-4 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
echo ::endgroup::
- name: Run acceptance tests - name: Run acceptance tests
run: bundle exec rake 'litmus:acceptance:parallel' run: |
buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:acceptance:parallel' -- bundle exec rake 'litmus:acceptance:parallel'
- name: "Honeycomb: Record acceptance testing times"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Run acceptance tests'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-5 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Remove test environment - name: Remove test environment
if: ${{ always() }} if: ${{ always() }}
run: | run: |
bundle exec rake 'litmus:tear_down' if [ -f inventory.yaml ]; then
buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:tear_down' -- bundle exec rake 'litmus:tear_down'
echo ::group::=== REQUEST === echo ::group::=== REQUEST ===
cat request.json || true cat request.json || true
echo echo
echo ::endgroup:: echo ::endgroup::
fi
- name: "Honeycomb: Record removal times"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Remove test environment'
slack-workflow-status: slack-workflow-status:
if: always() if: always()
@@ -139,8 +223,8 @@ jobs:
uses: Gamesight/slack-workflow-status@master uses: Gamesight/slack-workflow-status@master
with: with:
# Required Input # Required Input
repo_token: ${{secrets.GITHUB_TOKEN}} repo_token: ${{ secrets.GITHUB_TOKEN }}
slack_webhook_url: ${{secrets.SLACK_WEBHOOK}} slack_webhook_url: ${{ secrets.SLACK_WEBHOOK }}
# Optional Input # Optional Input
channel: '#team-ia-bots' channel: '#team-ia-bots'
name: 'GABot' name: 'GABot'

View File

@@ -12,35 +12,63 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
outputs: outputs:
matrix: ${{ steps.get-matrix.outputs.matrix }} matrix: ${{ steps.get-matrix.outputs.matrix }}
steps: steps:
- name: "Honeycomb: Start recording"
uses: kvrhdn/gha-buildevents@v1.0.2
with:
apikey: ${{ env.HONEYCOMB_WRITEKEY }}
dataset: ${{ env.HONEYCOMB_DATASET }}
job-status: ${{ job.status }}
- name: "Honeycomb: Start first step"
run: |
echo STEP_ID=0 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Checkout Source - name: Checkout Source
uses: actions/checkout@v2 uses: actions/checkout@v2
if: ${{ github.repository_owner == 'puppetlabs' }}
- name: Activate Ruby 2.7 - name: Activate Ruby 2.7
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
if: ${{ github.repository_owner == 'puppetlabs' }}
with: with:
ruby-version: "2.7" ruby-version: "2.7"
- name: Cache gems - name: Cache gems
uses: actions/cache@v2 uses: actions/cache@v2
if: ${{ github.repository_owner == 'puppetlabs' }}
with: with:
path: vendor/gems path: vendor/gems
key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }} key: ${{ runner.os }}-${{ github.event_name }}-${{ hashFiles('**/Gemfile') }}
restore-keys: | restore-keys: |
${{ runner.os }}-pr- ${{ runner.os }}-${{ github.event_name }}-
${{ runner.os }}- ${{ runner.os }}-
- name: Install gems - name: Install gems
if: ${{ github.repository_owner == 'puppetlabs' }}
run: | run: |
bundle config path vendor/gems buildevents cmd $TRACE_ID $STEP_ID 'bundle config path vendor/gems' -- bundle config path vendor/gems
bundle config jobs 8 buildevents cmd $TRACE_ID $STEP_ID 'bundle config jobs 8' -- bundle config jobs 8
bundle config retry 3 buildevents cmd $TRACE_ID $STEP_ID 'bundle config retry 3' -- bundle config retry 3
bundle install buildevents cmd $TRACE_ID $STEP_ID 'bundle install' -- bundle install
bundle clean buildevents cmd $TRACE_ID $STEP_ID 'bundle clean' -- bundle clean
- name: Setup Acceptance Test Matrix - name: Setup Acceptance Test Matrix
id: get-matrix id: get-matrix
run: "bundle exec matrix_from_metadata" if: ${{ github.repository_owner == 'puppetlabs' }}
run: |
if [ '${{ github.repository_owner }}' == 'puppetlabs' ]; then
buildevents cmd $TRACE_ID $STEP_ID matrix_from_metadata -- bundle exec matrix_from_metadata
else
echo "::set-output name=matrix::{}"
fi
- name: "Honeycomb: Record setup time"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Setup Test Matrix'
Acceptance: Acceptance:
needs: needs:
@@ -51,7 +79,27 @@ jobs:
fail-fast: false fail-fast: false
matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}} matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}}
env:
BUILDEVENT_FILE: '../buildevents.txt'
steps: steps:
- run: |
echo 'platform=${{ matrix.platform }}' >> $BUILDEVENT_FILE
echo 'collection=${{ matrix.collection }}' >> $BUILDEVENT_FILE
- name: "Honeycomb: Start recording"
uses: kvrhdn/gha-buildevents@v1.0.2
with:
apikey: ${{ env.HONEYCOMB_WRITEKEY }}
dataset: ${{ env.HONEYCOMB_DATASET }}
job-status: ${{ job.status }}
matrix-key: ${{ matrix.platform }}-${{ matrix.collection }}
- name: "Honeycomb: start first step"
run: |
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-1 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Checkout Source - name: Checkout Source
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -64,26 +112,39 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: vendor/gems path: vendor/gems
key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }} key: ${{ runner.os }}-${{ github.event_name }}-${{ hashFiles('**/Gemfile') }}
restore-keys: | restore-keys: |
${{ runner.os }}-pr- ${{ runner.os }}-${{ github.event_name }}-
${{ runner.os }}- ${{ runner.os }}-
- name: Install gems - name: "Honeycomb: Record cache setup time"
if: ${{ always() }}
run: | run: |
bundle config path vendor/gems buildevents step $TRACE_ID $STEP_ID $STEP_START 'Cache retrieval'
bundle config jobs 8 echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-2 >> $GITHUB_ENV
bundle config retry 3 echo STEP_START=$(date +%s) >> $GITHUB_ENV
bundle install
bundle clean
- name: bundler environment - name: Bundler Setup
run: | run: |
bundle env buildevents cmd $TRACE_ID $STEP_ID 'bundle config path vendor/gems' -- bundle config path vendor/gems
buildevents cmd $TRACE_ID $STEP_ID 'bundle config jobs 8' -- bundle config jobs 8
buildevents cmd $TRACE_ID $STEP_ID 'bundle config retry 3' -- bundle config retry 3
buildevents cmd $TRACE_ID $STEP_ID 'bundle install' -- bundle install
buildevents cmd $TRACE_ID $STEP_ID 'bundle clean' -- bundle clean
echo ::group::bundler environment
buildevents cmd $TRACE_ID $STEP_ID 'bundle env' -- bundle env
echo ::endgroup::
- name: "Honeycomb: Record Bundler Setup time"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Bundler Setup'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-3 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Provision test environment - name: Provision test environment
run: | run: |
bundle exec rake 'litmus:provision[provision::provision_service,${{ matrix.platform }}]' buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:provision ${{ matrix.platform }}' -- bundle exec rake 'litmus:provision[provision::provision_service,${{ matrix.platform }}]'
echo ::group::=== REQUEST === echo ::group::=== REQUEST ===
cat request.json || true cat request.json || true
echo echo
@@ -100,8 +161,8 @@ jobs:
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 5 max_attempts: 5
retry_wait_seconds: 90 retry_wait_seconds: 60
command: bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]' command: buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:install_agent ${{ matrix.collection }}' -- bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'
# The agent installer on windows does not finish in time for this to work. To # The agent installer on windows does not finish in time for this to work. To
# work around this for now, retry after a minute if installing the module failed. # work around this for now, retry after a minute if installing the module failed.
@@ -109,18 +170,42 @@ jobs:
uses: nick-invision/retry@v1 uses: nick-invision/retry@v1
with: with:
timeout_minutes: 30 timeout_minutes: 30
max_attempts: 5 max_attempts: 2
retry_wait_seconds: 60 retry_wait_seconds: 60
command: bundle exec rake 'litmus:install_module' command: buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:install_module' -- bundle exec rake 'litmus:install_module'
- name: "Honeycomb: Record deployment times"
if: ${{ always() }}
run: |
echo ::group::honeycomb step
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Deploy test system'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-4 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
echo ::endgroup::
- name: Run acceptance tests - name: Run acceptance tests
run: bundle exec rake 'litmus:acceptance:parallel' run: |
buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:acceptance:parallel' -- bundle exec rake 'litmus:acceptance:parallel'
- name: "Honeycomb: Record acceptance testing times"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Run acceptance tests'
echo STEP_ID=${{ matrix.platform }}-${{ matrix.collection }}-5 >> $GITHUB_ENV
echo STEP_START=$(date +%s) >> $GITHUB_ENV
- name: Remove test environment - name: Remove test environment
if: ${{ always() }} if: ${{ always() }}
run: | run: |
bundle exec rake 'litmus:tear_down' if [ -f inventory.yaml ]; then
buildevents cmd $TRACE_ID $STEP_ID 'rake litmus:tear_down' -- bundle exec rake 'litmus:tear_down'
echo ::group::=== REQUEST === echo ::group::=== REQUEST ===
cat request.json || true cat request.json || true
echo echo
echo ::endgroup:: echo ::endgroup::
fi
- name: "Honeycomb: Record removal times"
if: ${{ always() }}
run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Remove test environment'

View File

@@ -54,3 +54,7 @@ spec/spec_helper.rb:
unmanaged: false unmanaged: false
.gitpod.yml: .gitpod.yml:
unmanaged: false unmanaged: false
.github/workflows/nightly.yml:
unmanaged: false
.github/workflows/pr_test.yml:
unmanaged: false

View File

@@ -82,6 +82,6 @@
} }
], ],
"template-url": "https://github.com/puppetlabs/pdk-templates#main", "template-url": "https://github.com/puppetlabs/pdk-templates#main",
"template-ref": "heads/main-0-g874030e", "template-ref": "heads/main-0-g5afcd3d",
"pdk-version": "1.18.1" "pdk-version": "1.18.1"
} }