Skip to content

Commit 88c00c6

Browse files
authored
chore: cleanup after repo and default-branch renames (#55)
* chore: update GitHub workflow refs to `main` branch * chore: update README reference to old repo path * chore: exclude `README.md` from `libevm-delta` workflow
1 parent 18d6153 commit 88c00c6

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Go
22

33
on:
44
push:
5-
branches: [ libevm ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ libevm ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
@@ -18,6 +18,6 @@ jobs:
1818
go-version: 1.21.4
1919
- name: Run tests
2020
run: | # Upstream flakes are race conditions exacerbated by concurrent tests
21-
FLAKY_REGEX='go-ethereum/(eth|eth/tracers/js|eth/tracers/logger|accounts/keystore|eth/downloader|miner|ethclient|ethclient/gethclient|eth/catalyst)$';
21+
FLAKY_REGEX='go-ethereum/(eth|eth/tracers/js|eth/tracers/logger|accounts/abi/bind|accounts/keystore|eth/downloader|miner|ethclient|ethclient/gethclient|eth/catalyst)$';
2222
go list ./... | grep -P "${FLAKY_REGEX}" | xargs -n 1 go test -short;
2323
go test -short $(go list ./... | grep -Pv "${FLAKY_REGEX}");

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: golangci-lint
22

33
on:
44
push:
5-
branches: [ libevm ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ libevm ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
permissions:

.github/workflows/libevm-delta.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: libevm delta
22

33
on:
44
push:
5-
branches: [ libevm ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ libevm ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
@@ -26,13 +26,14 @@ jobs:
2626
git diff --diff-filter=a --word-diff --unified=0 --color=always \
2727
libevm-base \
2828
':(exclude).golangci.yml' \
29-
':(exclude).github/**';
29+
':(exclude).github/**' \
30+
':(exclude)README.md';
3031
31-
- name: git diff libevm-base..libevm
32+
- name: git diff libevm-base..main
3233
run: |
33-
git checkout libevm --;
34+
git checkout main --;
3435
git diff --diff-filter=a --word-diff --unified=0 --color=always \
3536
libevm-base \
3637
':(exclude).golangci.yml' \
37-
':(exclude).github/**';
38-
38+
':(exclude).github/**' \
39+
':(exclude)README.md';

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,4 +361,4 @@ The libevm (i) _additions_ to the go-ethereum library (i.e. all code in files wi
361361
be it a directory or file name); and (ii) _modifications_ to existing go-ethereum code; are licensed under the
362362
[GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html),
363363
also included in our repository in the `COPYING.LESSER` file. A comprehensive outline of _modifications_ is
364-
produced by the [libevm delta workflow](https://github.com/ava-labs/go-ethereum/actions/workflows/libevm-delta.yml).
364+
produced by the [libevm delta workflow](https://github.com/ava-labs/libevm/actions/workflows/libevm-delta.yml).

0 commit comments

Comments
 (0)