-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Complete vps-audit and makeself benchmarks for CI integration + minor visualization additions * set-up-to-date * deps fix * fix deps * fix deps v2 * fixes * fixes * remove extra files * vps-audit verification changes * Added makeself, vps-audit and vps-audit with negation * change verification for vps, added vps-negate to ci * Make vps-audit work with existing Docker image * Changed README.md for iptables to work * vps verification changes * fix infotest because of varying bin sizes * Make verify.sh fit common format Signed-off-by: Evangelos Lamprou <[email protected]> * vps-audit-negate verification fixes * Minor fixes on makeself * Added new benchmarks on tests.yml --------- Signed-off-by: Evangelos Lamprou <[email protected]> Co-authored-by: Evangelos Lamprou <[email protected]>
- Loading branch information
Showing
45 changed files
with
303,258 additions
and
298 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -101,4 +101,4 @@ def main(data_path): | |
node_heatmap(df) | ||
|
||
if __name__ == '__main__': | ||
main(data_path) | ||
main(data_path) |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#! /bin/bash | ||
|
||
BASE_DIR="$(dirname "$(readlink -f "$0")")" | ||
TEST_DIR="${BASE_DIR}/makeself/test" | ||
find "${TEST_DIR}" -type f -name "*.log" -exec rm -f {} + | ||
|
||
if [[ -f run_results.log ]]; then | ||
rm run_results.log | ||
fi | ||
|
||
if [[ -f verify_results.log ]]; then | ||
rm verify_results.log | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#! /bin/bash | ||
|
||
sudo apt update | ||
|
||
sudo apt install -y \ | ||
binutils \ | ||
git \ | ||
build-essential \ | ||
coreutils \ | ||
wget \ | ||
unzip \ | ||
make \ | ||
pbzip2 \ | ||
binutils \ | ||
bzip2 \ | ||
zstd \ | ||
gnupg |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#! /bin/bash |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.PHONY: all clean test help | ||
|
||
VERSION := $(shell cat VERSION) | ||
OUTPUT := makeself-$(VERSION).run | ||
|
||
all: $(OUTPUT) | ||
|
||
$(OUTPUT): makeself.sh makeself-header.sh VERSION | ||
./make-release.sh | ||
|
||
clean: | ||
$(RM) makeself-*.run | ||
|
||
test: | ||
./test/run-tests.sh | ||
|
||
help: | ||
$(info Targets: all $(OUTPUT) clean test help) |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5.0 |
Oops, something went wrong.