Skip to content

Commit 55dedf9

Browse files
authored
Merge pull request #16 from opengovern/fix-folder-reorganization
fix: update folder organization
2 parents 85aa72e + 89f29d1 commit 55dedf9

File tree

247 files changed

+669
-1175
lines changed

Some content is hidden

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

247 files changed

+669
-1175
lines changed

.env

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,21 @@ jobs:
4646
run: |
4747
git config --global url.https://[email protected]/opengovern.insteadOf https://github.com/opengovern
4848
- name: Build Github Plugin App
49-
working-directory: ./steampipe-plugin-github
49+
working-directory: ./plugin/cloudql
5050
run: make build
5151
- name: Pack Github Plugin Build
52-
working-directory: ./steampipe-plugin-github
52+
working-directory: ./plugin/cloudql
5353
run: |
5454
tar -cvf build.tar build
5555
- name: Upload Github Plugin Artifact
5656
uses: actions/upload-artifact@v3
5757
with:
5858
name: steampipe-plugin-github
59-
path: ./steampipe-plugin-github/build.tar
59+
path: ./plugin/cloudql/build.tar
6060
retention-days: 1
6161
- name: Build Local Describer App
6262
working-directory: .
63-
run: make local-build
63+
run: make build-describer
6464
- name: Pack Local Describer Build
6565
working-directory: .
6666
run: |
@@ -72,20 +72,20 @@ jobs:
7272
path: ./local.tar
7373
retention-days: 1
7474
- name: Build Integration Plugin
75-
working-directory: ./integration-plugin
75+
working-directory: ./plugin/integration
7676
run: make build
7777
- name: Create output directory
7878
working-directory: .
7979
run: mkdir -p github-output
8080
- name: Copy steampipe plugin to output directory
8181
working-directory: .
82-
run: cp ./steampipe-plugin-github/build/steampipe-plugin-github.plugin ./github-output/cloudql-plugin
82+
run: cp ./plugin/cloudql/build/steampipe-plugin-github.plugin ./github-output/cloudql-plugin
8383
- name: Copy integration plugin to output directory
8484
working-directory: .
85-
run: cp ./integration-plugin/build/integration-plugin ./github-output/
85+
run: cp ./plugin/integration/build/integration-plugin ./github-output/
8686
- name: Copy manifest to output directory
8787
working-directory: .
88-
run: cp ./integration-plugin/manifest.yaml ./github-output/
88+
run: cp ./plugin/integration/manifest.yaml ./github-output/
8989
- name: Pack output
9090
working-directory: .
9191
run: |

.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,4 @@ build/
22
og-describer-template
33
.idea
44
.env
5-
local/
6-
output.json
7-
.vscode
8-
.vscode/*
9-
10-
output.json
5+
local/

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

DockerFile

Lines changed: 0 additions & 8 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
.PHONY: build
22

3-
local-build: clean
4-
CC=/usr/bin/musl-gcc GOPRIVATE="github.com/opengovern" GOOS=linux GOARCH=amd64 go build -a -v -mod=mod -ldflags "-linkmode external -extldflags '-static' -s -w" -tags musl -o ./local/og-describer-github main.go
5-
6-
build-cli: clean
7-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -v -ldflags "-w -extldflags -static" -o ./build/og-github-cli ./command/main.go
8-
9-
clean:
10-
rm -rf ./local/og-describer-github ./build/og-github-cli
3+
build-describer: clean
4+
CC=/usr/bin/musl-gcc GOPRIVATE="github.com/opengovern" GOOS=linux GOARCH=amd64 go build -a -v -mod=mod -ldflags "-linkmode external -extldflags '-static' -s -w" -tags musl -o ./local/og-describer-github describer/main.go

command/LICENSE

Whitespace-only changes.

command/cmd/describer.go

Lines changed: 0 additions & 200 deletions
This file was deleted.

0 commit comments

Comments
 (0)