diff --git a/.github/workflows/publish-latest-dev-release-to-pypi.yml b/.github/workflows/publish-latest-dev-release-to-pypi.yml index 69a99e72e..4275dbdad 100644 --- a/.github/workflows/publish-latest-dev-release-to-pypi.yml +++ b/.github/workflows/publish-latest-dev-release-to-pypi.yml @@ -28,7 +28,7 @@ jobs: run: python -m pip install cibuildwheel - name: Build wheels - run: python -m cibuildwheel --output-dir wheelhouse --archs x86_64,aarch64 + run: python -m cibuildwheel --output-dir wheelhouse --archs x86_64 - name: Build binary wheel and a source tarball run: pipx run build --sdist diff --git a/.github/workflows/publish-release-to-pypi.yml b/.github/workflows/publish-release-to-pypi.yml index 432563312..545f5614a 100644 --- a/.github/workflows/publish-release-to-pypi.yml +++ b/.github/workflows/publish-release-to-pypi.yml @@ -25,7 +25,7 @@ jobs: run: python -m pip install cibuildwheel - name: Build wheels - run: python -m cibuildwheel --output-dir wheelhouse --archs x86_64,aarch64 + run: python -m cibuildwheel --output-dir wheelhouse --archs x86_64 - name: Build binary wheel and a source tarball run: pipx run build --sdist diff --git a/CHANGELOG.md b/CHANGELOG.md index e6beb922b..23f00bd0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ * remove AutoRuleCorpusTester * adds support for rust extension development -* adds prebuild wheels for architectures `x86_64` and `aarch64` on `manylinux` and `musllinux` based linux platforms to releases +* adds prebuild wheels for architectures `x86_64` on `manylinux` and `musllinux` based linux platforms to releases * add manual how to use local images with minikube example setup to documentation * move `Configuration` to top level of documentation diff --git a/tests/unit/util/test_configuration.py b/tests/unit/util/test_configuration.py index 4a027b339..19a02147f 100644 --- a/tests/unit/util/test_configuration.py +++ b/tests/unit/util/test_configuration.py @@ -2,6 +2,7 @@ # pylint: disable=protected-access # pylint: disable=line-too-long import json +import os import uuid from logging import getLogger from pathlib import Path @@ -28,6 +29,8 @@ path_to_only_output_config, ) +in_ci = os.environ.get("GITHUB_ACTIONS") == "true" + logger = getLogger() @@ -1215,6 +1218,7 @@ def test_verify_credentials_file_raises_for_unexpected_key(self, config_path, tm ): _ = Configuration.from_sources([str(config_path)]) + @pytest.mark.skipif(in_ci, reason="breaks on broken ci runner") def test_no_config_parameter_is_overwritten_with_a_default(self, tmp_path): prometheus_multiproc_dir: Path = tmp_path / "prometheus_multiproc_dir" prometheus_multiproc_dir.mkdir()