Skip to content

Commit

Permalink
Merge branch 'master' into makito/DAOS-16478
Browse files Browse the repository at this point in the history
Skip-unit-tests: true
Skip-fault-injection-test: true
Skip-func-hw-test-medium-md-on-ssd: false
Skip-func-hw-test-medium-ucx-provider: false
Test-tag: test_pool_autotest
Test-repeat: 2
  • Loading branch information
shimizukko committed Dec 26, 2024
2 parents 71ee02d + ebe7275 commit 9b7ec4b
Show file tree
Hide file tree
Showing 1,216 changed files with 73,609 additions and 28,297 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,7 @@ src/pool/ @daos-stack/metadata-owners @daos-stack/metadata-watchers
src/container/ @daos-stack/metadata-owners @daos-stack/metadata-watchers
src/rdb/ @daos-stack/metadata-owners @daos-stack/metadata-watchers
src/rsvc/ @daos-stack/metadata-owners @daos-stack/metadata-watchers

# PRs that touch GitHub actions
.github/workflows/ @daos-stack/actions-watchers
.github/actions/ @daos-stack/actions-watchers
14 changes: 0 additions & 14 deletions .github/actions/import-commit-pragmas/action.yml

This file was deleted.

22 changes: 19 additions & 3 deletions .github/actions/provision-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,48 @@ runs:
STAGE_NAME='${{ env.STAGE_NAME }}'
REQID='${{ github.event.pull_request.number }}-${{ github.run_number }}'
CP_PRIORITY=${{ env.CP_PRIORITY }}
echo "::group::Provisioning"
if ! JENKINS_URL='${{ env.JENKINS_URL }}' \
LABEL='${{ env.LABEL }}' \
PRIORITY=${CP_PRIORITY:-3} \
COVFN_DISABLED=${COVFN_DISABLED} \
provision_cluster "$STAGE_NAME" "${{ github.run_id }}" \
"${{ runner.name }}" \
"$REQID-${STAGE_NAME// /_}"; then
echo "::endgroup::"
echo "Failed to provision cluster"
exit 1
fi
echo "::endgroup::"
- name: Wait for nodes to be ready
if: ${{ inputs.condition }}
shell: bash
run: . ci/gha_functions.sh;
set -eux;
wait_nodes_ready
echo "::group::Waiting for nodes to be ready";
wait_nodes_ready;
echo "::endgroup::"
- name: Post-provision cluster
if: ${{ inputs.condition }}
shell: bash
run: |
. ci/gha_functions.sh
set -x
inst_repos="${{ env.CP_PR_REPOS }} ${{ github.event.inputs.pr-repos }}"
if [ -z "${{ env.CP_RPM_TEST_VERSION }}" ] &&
if [ -n "${{ github.event.inputs.rpm-test-version }}" ]; then
rpm_test_version="${{ github.event.inputs.rpm-test-version }}"
elif [ -n "${{ env.CP_RPM_TEST_VERSION }}" ]; then
rpm_test_version="${{ env.CP_RPM_TEST_VERSION }}"
fi
if [ -z "$rpm_test_version" ] &&
[[ $inst_repos != *daos@* ]]; then
inst_repos+=" daos@PR-${{ github.event.pull_request.number }}"
inst_repos+=":${{ github.run_number }}"
fi
ARTIFACTS_URL=$ARTIFACTS_URL \
echo "::group::Post-provision configuration";
ARTIFACTS_URL="$ARTIFACTS_URL" \
INST_REPOS="$(eval echo "$inst_repos")" \
CI_RPM_TEST_VERSION="$rpm_test_version" \
DAOS_VERSION="$DAOS_VERSION" \
DISTRO=$PROVISION_DISTRO ci/provisioning/post_provision_config.sh
echo "::endgroup::"
28 changes: 0 additions & 28 deletions .github/actions/variable-from-pragma/action.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: pip
directories:
- /utils/ansible/ftest/
- /utils/cq/
- /
schedule:
interval: daily
groups:
python-packages:
patterns:
- "*"
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
assignees:
- daos-stack/actions-watchers
Loading

0 comments on commit 9b7ec4b

Please sign in to comment.