Lars Kreutzer

Results 36 comments of Lars Kreutzer

1. I think the current `WORKSPACE.bazel` is actually covered since it has the right ending. It's just an issue if we ever get a `WORKSPACE` file as well. 2. The...

See docs https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast

## Analysis: The current state Test run with empty build-buddy cache but without any changes: - https://github.com/LKreutzer/magma/runs/7690947110?check_suite_focus=true - Build https://app.buildbuddy.io/invocation/0dd7fde0-fc44-4741-b1d6-e2e3dff906d2#cache ![Screenshot from 2022-08-05 14-56-56](https://user-images.githubusercontent.com/34488763/183081941-2265ca90-f459-4574-abd5-f51e0bad1bf6.png) - Test https://app.buildbuddy.io/invocation/a7a0d44b-8dbe-46a5-b790-9794370f13d8#cache ![Screenshot from 2022-08-05...

## Analysis: Matrix workflow with cache for the standard build Test run as matrix workflow with config "none", "asan" and "production": https://github.com/LKreutzer/magma/actions/runs/2803771590 The standard/no-config cache has been filled by the...

- S3 costs: - Storage: - Current price `$0.023` per GB per month (https://aws.amazon.com/s3/pricing/) - Increase ~7.5GB meaning a minimum increase of $0.1725 per month (negligible) - Actual increase per...

TODO: - [x] ~~Python tests should not fail with asan/production~~ **or** targets need to be adapted - [x] The profile publishing should use different names for different configs - [x]...

The python tests listed above all seem to fail with ``` ==================== Test output for //lte/gateway/python/magma/monitord/tests:test_icmp_monitor: ============================= test session starts ============================== platform linux -- Python 3.8.10, pytest-7.0.1, pluggy-1.0.0 -- /usr/bin/python3.8...

When running the python tests with `--config=production` the output is e.g.: ``` ==================== Test output for //lte/gateway/python/magma/monitord/tests:test_icmp_monitor: ============================= test session starts ============================== platform linux -- Python 3.8.10, pytest-7.0.1, pluggy-1.0.0 --...

Could run matrix jobs as: ``` jobs: bazel_build_and_test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - bazel-config: "" bazel-target: "..." - bazel-config: "--config=asan" bazel-target: "`bazel query 'kind(cc.*, //...)'`" - bazel-config:...

~~Successful~~ run https://github.com/LKreutzer/magma/actions/runs/2818533753 Edit: If condition not yet working.