File tree Expand file tree Collapse file tree 6 files changed +8
-9
lines changed
Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2626 run : |
2727 mkdir -p ./lib/json
2828 cd lib
29- git clone --depth 1 --branch v1.15.0 https://github.com/google/googletest.git
29+ git clone --depth 1 --branch v1.15.2 https://github.com/google/googletest.git
3030 curl -sSL "https://github.com/nlohmann/json/releases/download/v3.11.3/json.hpp" --output json/json.hpp
3131
3232 - name : Build project
Original file line number Diff line number Diff line change 1313 strategy :
1414 matrix :
1515 go-version :
16- - 1.21.x
17- - 1.22.x
16+ - 1.23.x
1817 os :
1918 - ubuntu-latest
2019 - windows-latest
Original file line number Diff line number Diff line change 7676 - name : Set up Go
7777 uses : actions/setup-go@v5
7878 with :
79- go-version : 1.21
79+ go-version : 1.23
8080
8181 - name : Restore Go modules cache
8282 uses : actions/cache@v4
@@ -116,7 +116,7 @@ jobs:
116116 - name : Run GoReleaser
117117 uses : goreleaser/goreleaser-action@v6
118118 with :
119- version : v1.20 .0
119+ version : v2.5 .0
120120 args : release --rm-dist
121121 env :
122122 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 44
55go env -w GOOS=windows
66go env -w GOARCH=amd64
7- go build -o ../bin/ccom.exe .
7+ go build -o ../bin/ccom.exe ccom.go
88
99cd ../bin
1010cmake -DCMAKE_BUILD_TYPE=Release -G " CodeBlocks - MinGW Makefiles" ../compiler/cpp
Original file line number Diff line number Diff line change 22mkdir -p bin
33cd ./cli
44
5- env GOOS=linux GOARCH=arm GOARM=7 go build -x -o ../bin/ccom-armv7 main .go
6- env GOOS=linux GOARCH=amd64 go build -x -o ../bin/ccom-amd64 main .go
5+ env GOOS=linux GOARCH=arm GOARM=7 go build -x -o ../bin/ccom-armv7 ccom .go
6+ env GOOS=linux GOARCH=amd64 go build -x -o ../bin/ccom-amd64 ccom .go
77
88cd ../bin
99cmake -DCMAKE_BUILD_TYPE=Release ../compiler/cpp
Original file line number Diff line number Diff line change 11module ccom
22
3- go 1.21
3+ go 1.23
44
55require (
66 github.com/AlecAivazis/survey/v2 v2.3.7
You can’t perform that action at this time.
0 commit comments