diff --git a/.github/workflows/e2e-linux.yml b/.github/workflows/e2e-linux.yml index de6f5200b65..3019dfaa1a4 100644 --- a/.github/workflows/e2e-linux.yml +++ b/.github/workflows/e2e-linux.yml @@ -113,3 +113,25 @@ jobs: test/e2e/state/logs test/e2e/state/configs test/e2e/state/wallet_db + + - name: Slack Notification on failure + if: failure() + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':poop:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#FF0000' + + - name: Slack Notification on success + if: success() + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':rocket:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#00FF00' \ No newline at end of file diff --git a/.github/workflows/e2e-macos.yml b/.github/workflows/e2e-macos.yml index aacd65fd84d..a3532dd0e9e 100644 --- a/.github/workflows/e2e-macos.yml +++ b/.github/workflows/e2e-macos.yml @@ -31,89 +31,120 @@ jobs: TAGS: ${{ github.event.inputs.tags || 'all' }} steps: - - uses: actions/checkout@v3 - - - name: Set up Ruby - uses: ruby/setup-ruby@v1.127.0 - with: - ruby-version: 3.1.2 - bundler-cache: true - - - name: Install dependencies - run: bundle install - - - name: Prepare MacOS - run: brew install screen - - - name: ๐Ÿ’พ GH Cache node db - id: cache-node - uses: actions/cache@v3 - with: - path: test/e2e/state/node_db/preprod - key: node-db-e2e-macos-preprod - - - name: ๐Ÿ’พ Cache wallet db - id: cache-wallet - uses: actions/cache@v3 - with: - path: test/e2e/state/wallet_db/preprod - key: wallet-db-e2-macos-preprod - - - name: Fetch preprod snapshot - if: steps.cache-node.outputs.cache-hit != 'true' + - name: Fail on purpose + run: exit 0 + # - uses: actions/checkout@v3 + + # - name: Set up Ruby + # uses: ruby/setup-ruby@v1.127.0 + # with: + # ruby-version: 3.1.2 + # bundler-cache: true + + # - name: Install dependencies + # run: bundle install + + # - name: Prepare MacOS + # run: brew install screen + + # - name: ๐Ÿ’พ GH Cache node db + # id: cache-node + # uses: actions/cache@v3 + # with: + # path: test/e2e/state/node_db/preprod + # key: node-db-e2e-macos-preprod + + # - name: ๐Ÿ’พ Cache wallet db + # id: cache-wallet + # uses: actions/cache@v3 + # with: + # path: test/e2e/state/wallet_db/preprod + # key: wallet-db-e2-macos-preprod + + # - name: Fetch preprod snapshot + # if: steps.cache-node.outputs.cache-hit != 'true' + # run: | + # mkdir state + # cd state + # mkdir node_db + # cd node_db + # mkdir preprod + # cd preprod + # curl -s https://downloads.csnapshots.io/snapshots/testnet/testnet-db-snapshot.json \ + # | jq -r .[].file_name > snapshot.json + # curl -o - \ + # https://downloads.csnapshots.io/snapshots/testnet/$(cat snapshot.json) \ + # | lz4 -c -d - | tar -x -C . + # mv db/* . + + + # - name: โš™๏ธ Setup (get latest bins and configs and decode fixtures) + # run: rake setup[preprod,$BRANCH] + + # - name: ๐Ÿ” Display versions + # run: rake display_versions + + # - name: ๐Ÿš€ Start node and wallet + # run: rake start_node_and_wallet[preprod] + + # - name: โณ Wait until node is synced + # run: rake wait_until_node_synced + + # - name: ๐Ÿงช Run all tests + # run: rake spec SPEC_OPTS="-t $TAGS" + + # - name: ๐Ÿ Stop node and wallet + # run: rake stop_node_and_wallet[preprod] + + # - name: ๐Ÿ’พ GH Save Cache of node db + # if: always() + # uses: actions/cache/save@v3 + # with: + # path: test/e2e/state/node_db/preprod + # key: node-db-e2e-macos-preprod + + # - name: ๐Ÿ’พ GH Save Cache of wallet db + # if: always() + # uses: actions/cache/save@v3 + # with: + # path: test/e2e/state/wallet_db/preprod + # key: wallet-db-e2e-macos-preprod + + # - name: ๐Ÿ“Ž Upload state + # uses: actions/upload-artifact@v3 + # if: always() + # with: + # name: macos-state + # path: | + # test/e2e/state/logs + # test/e2e/state/configs + # test/e2e/state/wallet_db + report: + needs: test + if: always() + runs-on: ubuntu-latest + steps: + - name: print result run: | - mkdir state - cd state - mkdir node_db - cd node_db - mkdir preprod - cd preprod - curl -s https://downloads.csnapshots.io/snapshots/testnet/testnet-db-snapshot.json \ - | jq -r .[].file_name > snapshot.json - curl -o - \ - https://downloads.csnapshots.io/snapshots/testnet/$(cat snapshot.json) \ - | lz4 -c -d - | tar -x -C . - mv db/* . - - - - name: โš™๏ธ Setup (get latest bins and configs and decode fixtures) - run: rake setup[preprod,$BRANCH] - - - name: ๐Ÿ” Display versions - run: rake display_versions - - - name: ๐Ÿš€ Start node and wallet - run: rake start_node_and_wallet[preprod] - - - name: โณ Wait until node is synced - run: rake wait_until_node_synced - - - name: ๐Ÿงช Run all tests - run: rake spec SPEC_OPTS="-t $TAGS" - - - name: ๐Ÿ Stop node and wallet - run: rake stop_node_and_wallet[preprod] - - - name: ๐Ÿ’พ GH Save Cache of node db - if: always() - uses: actions/cache/save@v3 - with: - path: test/e2e/state/node_db/preprod - key: node-db-e2e-macos-preprod - - - name: ๐Ÿ’พ GH Save Cache of wallet db - if: always() - uses: actions/cache/save@v3 - with: - path: test/e2e/state/wallet_db/preprod - key: wallet-db-e2e-macos-preprod - - - name: ๐Ÿ“Ž Upload state - uses: actions/upload-artifact@v3 - if: always() - with: - name: macos-state - path: | - test/e2e/state/logs - test/e2e/state/configs - test/e2e/state/wallet_db + echo ${{ needs.test.result }} + - name: Slack Notification on failure + if: needs.test.result != 'success' + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':poop:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#FF0000' + + - name: Slack Notification on success + if: needs.test.result == 'success' + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':rocket:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#00FF00' diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 45b8977b3c4..57b5defcbda 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -27,6 +27,7 @@ jobs: BRANCH: ${{ github.event.inputs.branch || 'master' }} TAGS: ${{ github.event.inputs.tags || 'all' }} + steps: - name: Check space run: Get-PSDrive @@ -146,3 +147,32 @@ jobs: C:/cardano-wallet/test/e2e/state/logs C:/cardano-wallet/test/e2e/state/configs C:/cardano-wallet/test/e2e/state/wallet_db + + + + report: + needs: [test] + + runs-on: ubuntu-latest + steps: + - name: Slack Notification on failure + if: ${{ always() && needs.test.result != 'success' }} + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':poop:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#FF0000' + + - name: Slack Notification on success + if: ${{ always() && needs.test.result == 'success' }} + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} + SLACK_ICON_EMOJI: ':rocket:' + SLACK_USERNAME: 'GitHub Action' + SLACK_MESSAGE: | + *Job Link:* ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + SLACK_COLOR: '#00FF00' \ No newline at end of file