8000 ebpf: non non-core. building files. by rafaeldtinoco · Pull Request #3015 · aquasecurity/tracee · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ebpf: non non-core. building files. #3015

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
774 changes: 112 additions & 662 deletions .github/workflows/pr.yaml

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions .github/workflows/release-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,12 @@ jobs:
image-ref: "tracee:latest"
severity: "CRITICAL"
exit-code: "1"
- name: Scan Docker Image for Vulnerabilities
uses: aquasecurity/trivy-action@master
with:
image-ref: "tracee:full"
severity: "CRITICAL"
exit-code: "1"
- name: Publish to docker.io registry
run: |
docker image tag tracee:latest aquasec/tracee:dev
docker image tag tracee:full aquasec/tracee:dev-full
docker image tag tracee:latest aquasec/tracee:x86_64-dev
docker image tag tracee:full aquasec/tracee:x86_64-dev-full
docker image push aquasec/tracee:dev
docker image push aquasec/tracee:dev-full
docker image push aquasec/tracee:x86_64-dev
docker image push aquasec/tracee:x86_64-dev-full
release-snapshot-arm64:
name: Release Snapshot ARM64
runs-on:
Expand Down Expand Up @@ -85,15 +75,7 @@ jobs:
image-ref: "tracee:latest"
severity: "CRITICAL"
exit-code: "1"
- name: Scan Docker Image for Vulnerabilities
uses: aquasecurity/trivy-action@master
with:
image-ref: "tracee:full"
severity: "CRITICAL"
exit-code: "1"
- name: Publish to docker.io registry
run: |
docker image tag tracee:latest aquasec/tracee:aarch64-dev
docker image tag tracee:full aquasec/tracee:aarch64-dev-full
docker image push aquasec/tracee:aarch64-dev
docker image push aquasec/tracee:aarch64-dev-full
14 changes: 2 additions & 12 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build
run: |
make -f builder/Makefile.release
# tracee:latest and tracee:full for historical reasons
# tracee:latest for historical reasons
# use :x86_64 as tag for the latest image
# use :x86_64-v0.xx.0 for versioned image
- name: Publish to docker.io registry
Expand All @@ -45,12 +45,6 @@ jobs:
docker image push aquasec/tracee:latest
docker image push aquasec/tracee:${ARCH}
docker image push aquasec/tracee:${ARCH}-${TAG}
docker image tag tracee:full aquasec/tracee:full
docker image tag tracee:full aquasec/tracee:${ARCH}-full
docker image tag tracee:full aquasec/tracee:${ARCH}-${TAG}-full
docker image push aquasec/tracee:full
docker image push aquasec/tracee:${ARCH}-full
docker image push aquasec/tracee:${ARCH}-${TAG}-full
release-arm64:
name: Release ARM64
env:
Expand Down Expand Up @@ -78,7 +72,7 @@ jobs:
- name: Build
run: |
make -f builder/Makefile.release
# NO tracee:latest and tracee:full (historical reason: amd64 only)
# NO tracee:latest (historical reason: amd64 only)
# use :aarch64 as tag for the latest image
# use :aarch64-v0.xx.0 for versioned image
- name: Publish to docker.io registry
Expand All @@ -89,7 +83,3 @@ jobs:
docker image tag tracee:latest aquasec/tracee:${ARCH}-${TAG}
docker image push aquasec/tracee:${ARCH}
docker image push aquasec/tracee:${ARCH}-${TAG}
docker image tag tracee:full aquasec/tracee:${ARCH}-full
docker image tag tracee:full aquasec/tracee:${ARCH}-${TAG}-full
docker image push aquasec/tracee:${ARCH}-full
docker image push aquasec/tracee:${ARCH}-${TAG}-full
2 changes: 1 addition & 1 deletion 3rdparty/btfhub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cd ${BASEDIR}
BTFHUB_REPO="https://github.com/aquasecurity/btfhub.git"
BTFHUB_ARCH_REPO="https://github.com/aquasecurity/btfhub-archive.git"

TRACEE_BPF_CORE="${BASEDIR}/dist/tracee.bpf.core.o"
TRACEE_BPF_CORE="${BASEDIR}/dist/tracee.bpf.o"

BTFHUB_DIR="${BASEDIR}/3rdparty/btfhub"
BTFHUB_ARCH_DIR="${BASEDIR}/3rdparty/btfhub-archive"
Expand Down
Loading
0