Skip to content

Commit

Permalink
Merge branch 'main' into add_base_url_gap
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Sep 18, 2024
2 parents 005e8bc + 74cd095 commit 3bee797
Show file tree
Hide file tree
Showing 12 changed files with 206 additions and 254 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/rc-breaking-changes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Main branch breaking changes check

on:
push:
branches:
- main

jobs:
breaking-changes:
name: Check "main" for breaking changes before release
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Go 1.22.6
uses: actions/setup-go@v4
with:
go-version: '1.22.6'
- name: Install gorelease tool
run: |
go install golang.org/x/exp/cmd/gorelease@latest
- name: Run Breaking Changes Script
run: |
go run ./tools/breakingchanges/cmd/main.go --ignore tools
1 change: 0 additions & 1 deletion .github/workflows/release-go-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ jobs:
fi
- name: Create GitHub Release
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Chainlink Testing Framework

[![Main branch breaking changes check](https://github.com/smartcontractkit/chainlink-testing-framework/actions/workflows/rc-breaking-changes.yaml/badge.svg)](https://github.com/smartcontractkit/chainlink-testing-framework/actions/workflows/rc-breaking-changes.yaml)
[![Lib tag](https://img.shields.io/github/v/tag/smartcontractkit/chainlink-testing-framework?filter=%2Alib%2A)](https://github.com/smartcontractkit/chainlink-testing-framework/tags)
[![WASP tag](https://img.shields.io/github/v/tag/smartcontractkit/chainlink-testing-framework?filter=%2Awasp%2A)](https://github.com/smartcontractkit/chainlink-testing-framework/tags)
[![Seth tag](https://img.shields.io/github/v/tag/smartcontractkit/chainlink-testing-framework?filter=%2Aseth%2A)](https://github.com/smartcontractkit/chainlink-testing-framework/tags)
Expand Down
16 changes: 6 additions & 10 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,21 @@ module github.com/smartcontractkit/chainlink-testing-framework/wasp/v2
If your module have `cmd/main.go` we build binary automatically for various platforms and attach it to the release page.

## Debug Release Pipeline
Since some components of pipeline are relying on published Go modules index and Dependabot we have a test script to verify the release pipeline:
To test the release pipeline use `$pkg/$subpkg/v1.999.X-test-release` tags, they are retracted so consumers can't accidentally install them

To test release for any module use `$pkg/$subpkg/v1.999.X-test-release` tags, they are retracted so consumers can't accidentally install them
Create a test file inside `.changeset` with format `v1.999.X-test-release.md`, tag and push:
```
nix develop
python ./scripts/test-package-release.py -tag k8s-test-runner/v1.999.0-test-release -package ./k8s-test-runner
git tag k8s-test-runner/v1.999.X-test-release && git push --tags
```

To remove all the test tags use
```
nix develop
python3 ./scripts/test-package-release.py -remove-test-tags
```

[Pipeline for releasing Go modules](.github/workflows/release-go-module.yml)
[Dependabot summary pipeline](.github/workflows/dependabot-consumers-summary.yaml)

## Check breaking changes locally
We have a simple wrapper to check breaking changes for all the packages. Commit all your changes and run:
```
./scripts/breaking-changes.sh
go run ./tools/breakingchanges/cmd/main.go
go run ./tools/breakingchanges/cmd/main.go --subdir wasp # check recursively starting with subdir
go run ./tools/breakingchanges/cmd/main.go --ignore tools,wasp,havoc,seth # to ignore some packages
```
2 changes: 0 additions & 2 deletions scripts/breaking-changes.sh

This file was deleted.

102 changes: 0 additions & 102 deletions scripts/test-package-release.py

This file was deleted.

127 changes: 0 additions & 127 deletions tools/breakingchanges/breaking_changes.go

This file was deleted.

Loading

0 comments on commit 3bee797

Please sign in to comment.