Skip to content

Commit a5cfcd9

Browse files
authored
Merge branch 'main' into mapper-tool
2 parents d7c5d6e + eaa1d2d commit a5cfcd9

File tree

87 files changed

+3465
-1144
lines changed

Some content is hidden

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

87 files changed

+3465
-1144
lines changed

.github/configs/wordlist.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ workerNodeNum
2323
durations
2424
dur
2525
ACM
26+
Acyclic
2627
addr
2728
adservice
2829
AdService
@@ -153,6 +154,7 @@ Daglis
153154
DAGMode
154155
datacenter
155156
Datacenter
157+
DAGs
156158
dataflows
157159
dataset
158160
david
@@ -710,6 +712,7 @@ cgroups
710712
noop
711713
YAMLs
712714
cgo
715+
EnableDAGDataset
713716
EnableMetricsScrapping
714717
EnableZipkinTracing
715718
EndpointPort
@@ -787,4 +790,12 @@ SciPy
787790
Volgenant
788791
injective
789792
py
790-
DDR
793+
DDR
794+
Prepull
795+
PrepullMode
796+
async
797+
AsyncMode
798+
AsyncResponseURL
799+
AsyncWaitToCollectMin
800+
Knative's
801+

.github/dependabot.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,47 +4,47 @@ updates:
44
- package-ecosystem: "pip"
55
directory: "/"
66
schedule:
7-
interval: "weekly"
7+
interval: "monthly"
88
ignore:
99
- dependency-name: "*"
1010
update-types: [ "version-update:semver-patch" ]
1111

1212
- package-ecosystem: "gomod"
1313
directory: "/"
1414
schedule:
15-
interval: "weekly"
15+
interval: "monthly"
1616
ignore:
1717
- dependency-name: "*"
1818
update-types: [ "version-update:semver-patch" ]
1919

2020
- package-ecosystem: "gomod"
2121
directory: "/tools/invoker"
2222
schedule:
23-
interval: "weekly"
23+
interval: "monthly"
2424
ignore:
2525
- dependency-name: "*"
2626
update-types: [ "version-update:semver-patch" ]
2727

2828
- package-ecosystem: "gomod"
2929
directory: "/tools/benchmark/"
3030
schedule:
31-
interval: "weekly"
31+
interval: "monthly"
3232
ignore:
3333
- dependency-name: "*"
3434
update-types: [ "version-update:semver-patch" ]
3535

3636
- package-ecosystem: "gomod"
3737
directory: "/tools/generateTimeline/"
3838
schedule:
39-
interval: "weekly"
39+
interval: "monthly"
4040
ignore:
4141
- dependency-name: "*"
4242
update-types: ["version-update:semver-patch"]
4343

4444
- package-ecosystem: "gomod"
4545
directory: "/tools/helloworld"
4646
schedule:
47-
interval: "weekly"
47+
interval: "monthly"
4848
ignore:
4949
- dependency-name: "*"
5050
update-types: [ "version-update:semver-patch" ]
@@ -54,23 +54,23 @@ updates:
5454
# Look for `.github/workflows` in the `root` directory
5555
directory: "/"
5656
schedule:
57-
interval: "weekly"
57+
interval: "monthly"
5858
ignore:
5959
- dependency-name: "*"
6060
update-types: [ "version-update:semver-patch" ]
6161

6262
- package-ecosystem: "pip"
6363
directory: "/tools/trace_synthesizer/"
6464
schedule:
65-
interval: "weekly"
65+
interval: "monthly"
6666
ignore:
6767
- dependency-name: "*"
6868
update-types: [ "version-update:semver-patch" ]
6969

7070
- package-ecosystem: "pip"
7171
directory: "/sampler/"
7272
schedule:
73-
interval: "weekly"
73+
interval: "monthly"
7474
ignore:
7575
- dependency-name: "*"
7676
update-types: [ "version-update:semver-patch" ]

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix: ${{ steps.set-matrix.outputs.matrix }}
1919
steps:
2020
- name: Checkout Sources
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- id: set-matrix
2323
run: ./utils/golangci-lint/resolve-modules.sh
2424

@@ -39,7 +39,7 @@ jobs:
3939
run: sudo apt update && sudo apt install libsnmp-dev
4040

4141
- name: Checkout code into go module directory
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343

4444
- name: Lint with golangci-lint
4545
uses: golangci/golangci-lint-action@v6.1.0

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
trace_func_go,
3131
]
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
with:
3535
lfs: "true"
3636
- name: Checkout LFS objects
@@ -62,7 +62,7 @@ jobs:
6262
run: go run cmd/loader.go --config pkg/config/test_config.json
6363

6464
- name: Check the output
65-
run: test -f "data/out/experiment_duration_5.csv" && test $(grep true data/out/experiment_duration_5.csv | wc -l) -eq 0 # test the output file for errors (true means failure to invoke)
65+
run: test -f "data/out/experiment_duration_5.csv" && test $(cat data/out/experiment_duration_5.csv | wc -l) -gt 1 && test $(grep true data/out/experiment_duration_5.csv | wc -l) -eq 0 # test the output file for errors (true means failure to invoke)
6666

6767
- name: Print logs
6868
if: ${{ always() }}

.github/workflows/e2e_aws.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: End-to-End AWS Tests
22

33
on:
44
workflow_dispatch:
5-
push:
6-
branches: [main]
75

86
env:
97
GOOS: linux
@@ -31,7 +29,7 @@ jobs:
3129
fi
3230
3331
- name: Checkout GitHub Code
34-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3533
with:
3634
lfs: "true"
3735

@@ -62,4 +60,4 @@ jobs:
6260
run: go run cmd/loader.go --config pkg/config/test_config_aws.json
6361

6462
- name: Check the output
65-
run: test -f "data/out/experiment_duration_5.csv" && test $(grep true data/out/experiment_duration_5.csv | wc -l) -eq 0 # test the output file for errors (true means failure to invoke)
63+
run: test -f "data/out/experiment_duration_5.csv" && test $(cat data/out/experiment_duration_5.csv | wc -l) -gt 1 && test $(grep true data/out/experiment_duration_5.csv | wc -l) -eq 0 # test the output file for errors (true means failure to invoke)

.github/workflows/enable-auto-merge.yml

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

.github/workflows/integration_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
lfs: 'true'
3030

.github/workflows/linters.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
name: Spellcheck
1111
runs-on: ubuntu-20.04
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: rojopolis/spellcheck-github-actions@0.44.0
13+
- uses: actions/checkout@v4
14+
- uses: rojopolis/spellcheck-github-actions@0.45.0
1515
name: Spellcheck
1616
with:
1717
config_path: .github/configs/spellcheck.yml
1818
commitlint:
1919
name: Commitlint
2020
runs-on: ubuntu-20.04
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- uses: actions/setup-node@v4
@@ -39,7 +39,7 @@ jobs:
3939
name: LinkCheck
4040
runs-on: ubuntu-20.04
4141
steps:
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
- uses: gaurav-nelson/github-action-markdown-link-check@v1
4444
with:
4545
use-quiet-mode: "yes"

.github/workflows/preprocessing_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626

2727
steps:
2828
- name: Check out code
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
lfs: 'true'
3232

3333
- uses: actions/setup-python@v5
3434
with:
35-
python-version: '3.9'
35+
python-version: '3.10'
3636

3737
- uses: actions/cache@v4
3838
with:

.github/workflows/tools-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
go-version: 1.22
3131

3232
- name: Check out code into the Go module directory
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Run tests
3636
working-directory: ${{ matrix.module }}

0 commit comments

Comments
 (0)