Skip to content

Commit a5d2d1f

Browse files
authored
Merge pull request #353 from dan-r/patch-1
Migrate firefly dependencies and container images to new org
2 parents 623501e + 00b3aaf commit a5d2d1f

100 files changed

Lines changed: 324 additions & 326 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: "1.22"
23+
go-version: "1.26.4"
2424
- name: Compile FireFly CLI
2525
run: make

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ jobs:
8585
- name: Checkout FireFly Core repo
8686
uses: actions/checkout@v4
8787
with:
88-
repository: hyperledger/firefly
88+
repository: hyperledger-firefly/firefly
8989
path: firefly
9090

9191
- name: Set up Go
9292
uses: actions/setup-go@v4
9393
with:
94-
go-version: "1.22"
94+
go-version: "1.26.4"
9595

9696
- name: Compile FireFly CLI
9797
working-directory: firefly-cli

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v4
2121
with:
22-
go-version: "1.22"
22+
go-version: "1.26.4"
2323
- name: Run GoReleaser
2424
uses: goreleaser/goreleaser-action@v4
2525
with:

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ builds:
2626
main: ./ff
2727
binary: ff
2828
ldflags:
29-
- "-s -w -X 'github.com/hyperledger/firefly-cli/cmd.BuildVersionOverride={{.Version}}' -X 'github.com/hyperledger/firefly-cli/cmd.BuildDate={{.Date}}' -X 'github.com/hyperledger/firefly-cli/cmd.BuildCommit={{.Commit}}'"
29+
- "-s -w -X 'github.com/hyperledger-firefly/cli/cmd.BuildVersionOverride={{.Version}}' -X 'github.com/hyperledger-firefly/cli/cmd.BuildDate={{.Date}}' -X 'github.com/hyperledger-firefly/cli/cmd.BuildCommit={{.Commit}}'"
3030
archives:
3131
- name_template: >-
3232
{{ .ProjectName }}_{{ .Version }}_

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We welcome contributions to the FireFly Project in many forms, and
44
there's always plenty to do!
55

66
Please visit the
7-
[contributors guide](https://hyperledger.github.io/firefly/latest/contributors/index) in the
7+
[contributors guide](https://hyperledger-firefly.github.io/firefly/latest/contributors/index) in the
88
docs to learn how to make contributions to this exciting project.
99

1010
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ format: ## Formats all go code
2626
test: deps
2727
$(VGO) test ./internal/... ./pkg/... ./cmd/... -cover -coverprofile=coverage.txt -covermode=atomic -timeout=30s ${TEST_ARGS}
2828
build: ## Builds all go code
29-
cd ff && go build -ldflags="-X 'github.com/hyperledger/firefly-cli/cmd.BuildDate=$(DATE)' -X 'github.com/hyperledger/firefly-cli/cmd.BuildCommit=$(GITREF)'"
29+
cd ff && go build -ldflags="-X 'github.com/hyperledger-firefly/cli/cmd.BuildDate=$(DATE)' -X 'github.com/hyperledger-firefly/cli/cmd.BuildCommit=$(GITREF)'"
3030
install: ## Installs the package
31-
cd ff && go install -ldflags="-X 'github.com/hyperledger/firefly-cli/cmd.BuildDate=$(DATE)' -X 'github.com/hyperledger/firefly-cli/cmd.BuildCommit=$(GITREF)'"
31+
cd ff && go install -ldflags="-X 'github.com/hyperledger-firefly/cli/cmd.BuildDate=$(DATE)' -X 'github.com/hyperledger-firefly/cli/cmd.BuildCommit=$(GITREF)'"
3232

3333
lint: ${LINT} ## Checks and reports lint errors
3434
GOGC=20 $(LINT) run -v --timeout 5m

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# FireFly CLI
22

3-
![build](https://github.com/hyperledger/firefly-cli/actions/workflows/build.yml/badge.svg?branch=main)
3+
![build](https://github.com/hyperledger-firefly/cli/actions/workflows/build.yml/badge.svg?branch=main)
44

5-
The FireFly CLI can be used to create local [FireFly](https://github.com/hyperledger/firefly) stacks
5+
The FireFly CLI can be used to create local [FireFly](https://github.com/hyperledger-firefly/firefly) stacks
66
for offline development of blockchain apps. This allows developers to rapidly iterate on their idea without
77
needing to set up a bunch of infrastructure before they can write the first line of code.
88

@@ -21,7 +21,7 @@ In order to run the FireFly CLI, you will need a few things installed on your de
2121
The easiest way to get up and running with the FireFly CLI is to download a pre-compiled binary of the latest release.
2222

2323
### Download the package for your OS
24-
Go to the [latest release page](https://github.com/hyperledger/firefly-cli/releases/latest) and download the package for your OS and CPU architecture.
24+
Go to the [latest release page](https://github.com/hyperledger-firefly/cli/releases/latest) and download the package for your OS and CPU architecture.
2525

2626
### Extract the binary and move it to `/usr/local/bin`
2727

@@ -47,7 +47,7 @@ If you downloaded the package from GitHub into a different directory, you will n
4747
If you have a local Go development environment, and you have included `${GOPATH}/bin` in your path, you can install with:
4848

4949
```sh
50-
go install github.com/hyperledger/firefly-cli/ff@latest
50+
go install github.com/hyperledger-firefly/cli/ff@latest
5151
```
5252

5353
## Create a new stack

cmd/accounts_create.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import (
2020
"context"
2121
"fmt"
2222

23-
"github.com/hyperledger/firefly-cli/internal/docker"
24-
"github.com/hyperledger/firefly-cli/internal/log"
25-
"github.com/hyperledger/firefly-cli/internal/stacks"
23+
"github.com/hyperledger-firefly/cli/internal/docker"
24+
"github.com/hyperledger-firefly/cli/internal/log"
25+
"github.com/hyperledger-firefly/cli/internal/stacks"
2626
"github.com/spf13/cobra"
2727
)
2828

cmd/accounts_create_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"testing"
66

7-
"github.com/hyperledger/firefly-cli/internal/utils"
7+
"github.com/hyperledger-firefly/cli/internal/utils"
88
"github.com/stretchr/testify/assert"
99
)
1010

cmd/accounts_list.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"encoding/json"
2222
"fmt"
2323

24-
"github.com/hyperledger/firefly-cli/internal/docker"
25-
"github.com/hyperledger/firefly-cli/internal/log"
26-
"github.com/hyperledger/firefly-cli/internal/stacks"
24+
"github.com/hyperledger-firefly/cli/internal/docker"
25+
"github.com/hyperledger-firefly/cli/internal/log"
26+
"github.com/hyperledger-firefly/cli/internal/stacks"
2727
"github.com/spf13/cobra"
2828
)
2929

0 commit comments

Comments
 (0)