-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored it to be part of the main tools package and not in a separate package to utilize models and dependencies of the main tools package. Restructured the code to be better readable and understandable. Deprecations are now visible in the CCC terminal.
- Loading branch information
Showing
21 changed files
with
746 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.23 | ||
- name: Setup Docker buildx | ||
uses: docker/[email protected] | ||
- name: Set up QEMU | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
FROM node:lts-slim as cccClientBuild | ||
FROM node:lts-slim AS ccc-client-build | ||
|
||
WORKDIR /build | ||
COPY ccc-client /build | ||
RUN npm config set update-notifier false | ||
RUN npm install | ||
RUN npm run-script build -- --base=/client/ | ||
|
||
FROM golang:1.19 AS cccBuild | ||
FROM golang:1.23 AS go-build | ||
|
||
WORKDIR /build | ||
COPY ccc/go.mod /build | ||
COPY ccc/go.sum /build | ||
COPY ccc/ccc.go /build | ||
RUN go build ccc.go | ||
COPY go.mod /build | ||
COPY go.sum /build | ||
COPY cmd /build/cmd | ||
COPY internal /build/internal | ||
RUN go build cmd/ccc/ccc.go | ||
RUN go build cmd/markdown/markdown.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.