Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ jobs:
- name: Download workspace archive
uses: actions/download-artifact@v4
with:
name: workspace-ubuntu-24.04-${{ github.run_id }}
name: workspace-${{ matrix.platform }}-${{ github.run_id }}
path: /tmp/
- name: Extract workspace archive
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
KMD_NOUSB: True
BUILD_TYPE: integration
ALGOTEST: 1
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

concurrency:
group: pr-${{ github.event.pull_request.number || github.ref }}
Expand Down Expand Up @@ -57,7 +58,7 @@ jobs:
path: /tmp/workspace-${{ matrix.platform }}.tar.gz
retention-days: 1
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down Expand Up @@ -122,7 +123,7 @@ jobs:
-race -timeout 1h -coverprofile=coverage.txt -covermode=atomic -p 1 \
$PACKAGE_NAMES
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down Expand Up @@ -200,7 +201,7 @@ jobs:
TEST_RESULTS=~/test_results/${{ matrix.platform }}_integration/${PARTITION_ID} \
test/scripts/run_integration_tests.sh
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down Expand Up @@ -267,7 +268,7 @@ jobs:
TEST_RESULTS=~/test_results/${{ matrix.platform }}_e2e_expect/${PARTITION_ID} \
test/scripts/run_integration_tests.sh
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down Expand Up @@ -331,7 +332,7 @@ jobs:
TEST_RESULTS=~/test_results/${{ matrix.platform }}_e2e_subs \
test/scripts/run_integration_tests.sh
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down Expand Up @@ -382,7 +383,7 @@ jobs:
TestGoalWithExpect \
TestTealdbgWithExpect
- name: Notify Slack on failure
if: failure()
if: failure() && env.SLACK_WEBHOOK != ''
uses: slackapi/slack-github-action@v2.1.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# go-algorand
| **Branch** | **Build Status** |
| --------------- | ---------------- |
| **rel/stable** | [![CircleCI](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fstable.svg?style=svg)](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fstable) |
| **rel/beta** | [![CircleCI](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fbeta.svg?style=svg)](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fbeta) |
| **rel/nightly** | [![CircleCI](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fnightly.svg?style=svg)](https://circleci.com/gh/algorand/go-algorand/tree/rel%2Fnightly) |
| **rel/stable** | [![Nightly Tests](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml/badge.svg?branch=rel%2Fstable)](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml) |
| **rel/beta** | [![Nightly Tests](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml/badge.svg?branch=rel%2Fbeta)](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml) |
| **rel/nightly** | [![Nightly Tests](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml/badge.svg?branch=rel%2Fnightly)](https://github.com/algorand/go-algorand/actions/workflows/ci-nightly.yml) |


**Algorand's** official implementation in Go.
Expand Down
Loading