From 2f476587ae7ac0aeb93529aabd6308d72461003b Mon Sep 17 00:00:00 2001 From: aalu1418 <50029043+aalu1418@users.noreply.github.com> Date: Fri, 22 Mar 2024 11:35:17 -0600 Subject: [PATCH] fix linting + use linux date syntax --- .github/workflows/dependency-updates.yml | 102 +++++++++++------------ 1 file changed, 48 insertions(+), 54 deletions(-) diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml index 8f44577df..e45a055a5 100644 --- a/.github/workflows/dependency-updates.yml +++ b/.github/workflows/dependency-updates.yml @@ -6,52 +6,52 @@ on: - cron: '0 0 * * *' # check every day at midnight UTC jobs: - E2E-Solana-Image: - uses: ./.github/workflows/open-pr.yml - with: - reviewers: aalu1418 - run: | - make upgrade-e2e-solana-image - image=$(curl https://api.github.com/repos/solana-labs/solana/releases/latest | jq -r '.tag_name') + # E2E-Solana-Image: + # uses: ./.github/workflows/open-pr.yml + # with: + # reviewers: aalu1418 + # run: | + # make upgrade-e2e-solana-image + # image=$(curl https://api.github.com/repos/solana-labs/solana/releases/latest | jq -r '.tag_name') - # outputs - echo "name=bump/solana-$image" >> "$GITHUB_OUTPUT" - echo "prTitle=[automated] bump solana image to $image" >> "$GITHUB_OUTPUT" - echo "prBody=(run CI by closing + reopening PR) Latest Solana mainnet release is [$image](https://github.com/solana-labs/solana/releases/latest)" >> "$GITHUB_OUTPUT" - echo "commitString=[automated] bump solana dependencies" >> "$GITHUB_OUTPUT" - secrets: inherit - E2E-Testing-Dependencies: - uses: ./.github/workflows/open-pr.yml - with: - reviewers: aalu1418 - run: | + # # outputs + # echo "name=bump/solana-$image" >> "$GITHUB_OUTPUT" + # echo "prTitle=[automated] bump solana image to $image" >> "$GITHUB_OUTPUT" + # echo "prBody=(run CI by closing + reopening PR) Latest Solana mainnet release is [$image](https://github.com/solana-labs/solana/releases/latest)" >> "$GITHUB_OUTPUT" + # echo "commitString=[automated] bump solana dependencies" >> "$GITHUB_OUTPUT" + # secrets: inherit + # E2E-Testing-Dependencies: + # uses: ./.github/workflows/open-pr.yml + # with: + # reviewers: aalu1418 + # run: | - # get CTF version in core - git clone https://github.com/smartcontractkit/chainlink.git temp-chainlink - cd temp-chainlink/integration-tests - coreVersion=$(go list -m github.com/smartcontractkit/chainlink-testing-framework | awk '{print $NF}') - cd ../../ - rm -rf temp-chainlink - echo "chainlink/integration-tests CTF: $coreVersion" + # # get CTF version in core + # git clone https://github.com/smartcontractkit/chainlink.git temp-chainlink + # cd temp-chainlink/integration-tests + # coreVersion=$(go list -m github.com/smartcontractkit/chainlink-testing-framework | awk '{print $NF}') + # cd ../../ + # rm -rf temp-chainlink + # echo "chainlink/integration-tests CTF: $coreVersion" - # get CTF version in solana - cd integration-tests - solVersion=$(go list -m github.com/smartcontractkit/chainlink-testing-framework | awk '{print $NF}') - echo "chainlink-solana/integration-tests CTF: $solVersion" - cd ../ + # # get CTF version in solana + # cd integration-tests + # solVersion=$(go list -m github.com/smartcontractkit/chainlink-testing-framework | awk '{print $NF}') + # echo "chainlink-solana/integration-tests CTF: $solVersion" + # cd ../ - # compare versions - if [[ $coreVersion != $solVersion ]]; then - make upgrade-e2e-core-deps - make gomodtidy - fi + # # compare versions + # if [[ $coreVersion != $solVersion ]]; then + # make upgrade-e2e-core-deps + # make gomodtidy + # fi - # outputs - echo "name=bump/e2e-deps-$coreVersion" >> "$GITHUB_OUTPUT" - echo "prTitle=[automated] bump e2e test deps to match chainlink/integration-tests" >> "$GITHUB_OUTPUT" - echo "prBody=(run CI by closing + reopening PR) chainlink/integration-tests uses chainlink-testing-framework@$coreVersion" >> "$GITHUB_OUTPUT" - echo "commitString=[automated] bump e2e <> core/integration-tests dependencies" >> "$GITHUB_OUTPUT" - secrets: inherit + # # outputs + # echo "name=bump/e2e-deps-$coreVersion" >> "$GITHUB_OUTPUT" + # echo "prTitle=[automated] bump e2e test deps to match chainlink/integration-tests" >> "$GITHUB_OUTPUT" + # echo "prBody=(run CI by closing + reopening PR) chainlink/integration-tests uses chainlink-testing-framework@$coreVersion" >> "$GITHUB_OUTPUT" + # echo "commitString=[automated] bump e2e <> core/integration-tests dependencies" >> "$GITHUB_OUTPUT" + # secrets: inherit SIMD-Update-Checker: runs-on: ubuntu-latest steps: @@ -59,10 +59,14 @@ jobs: id: updates run: | # new PRs - OPEN=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=open\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') + OPEN=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state=open\&per_page=100 | jq --arg t "$(date -d '7 days ago' +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') + # macos + # OPEN=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=open\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') # closed PRs - CLOSED=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=closed\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') + CLOSED=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state=closed\&per_page=100 | jq --arg t "$(date -d '7 days ago' +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') + # macos + # CLOSED=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=closed\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"') echo "open=$OPEN" >> "$GITHUB_OUTPUT" echo "closed=$CLOSED" >> "$GITHUB_OUTPUT" @@ -70,16 +74,6 @@ jobs: if: steps.updates.outputs.open || steps.updates.outputs.closed env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh issue create \ - -a @aalu1418 # TODO: assign to team when available - -t "SIMD Updates - $(date)" - -l auto-SIMD-alerts - -b "## Opened - ${{ steps.updates.outputs.open}} - - ## Closed - ${{ steps.updates.outputs.closed}} - " + run: gh issue create -a @aalu1418 -t "SIMD Updates - $(date)" -l auto-SIMD-alerts -b $'## Opened\n${{ steps.updates.outputs.open}}\n\n## Closed\n${{ steps.updates.outputs.closed}}'