Skip to content
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
84 changes: 0 additions & 84 deletions .github/actions/config-poetry/action.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/actions/config-poetry/config-poetry.sh

This file was deleted.

74 changes: 0 additions & 74 deletions .github/workflows/Iris.yml

This file was deleted.

33 changes: 30 additions & 3 deletions .github/workflows/MacOsNightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ on:
type: boolean

# Only allow one instance of this workflow to run at a time
env:
MISE_EXPERIMENTAL: "1"
MISE_PYTHON_GITHUB_ATTESTATIONS: "false"
POETRY_CACHE_DIR: ${{ github.workspace }}/.cache/pypoetry
POETRY_VIRTUALENVS_PATH: ${{ github.workspace }}/.cache/pypoetry/virtualenvs

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
Expand All @@ -35,10 +41,21 @@ jobs:
- name: Setup Cloudflare WARP
uses: SonarSource/gh-action_setup-cloudflare-warp@v1

- name: Install mise and tools
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
with:
version: 2026.5.9
tool_versions: |
python ${{ matrix.python-version }}
experimental: true

- name: Configure poetry
uses: ./.github/actions/config-poetry
uses: SonarSource/ci-github-actions/config-poetry@v1
with:
python-version: ${{ matrix.python-version }}
artifactory-reader-role: private-reader

- name: Install dependencies
run: poetry install

- name: Execute the test suite
run: poetry run pytest tests/
Expand Down Expand Up @@ -76,8 +93,18 @@ jobs:
wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-$SONARQUBE_VERSION.zip -O sonarqube_cache/sonarqube.zip
fi

- name: Install mise and tools
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
with:
version: 2026.5.9
tool_versions: |
python 3.12.1
experimental: true

- name: Configure poetry
uses: ./.github/actions/config-poetry
uses: SonarSource/ci-github-actions/config-poetry@v1
with:
artifactory-reader-role: private-reader

- name: Execute the integration tests
run: ./.github/scripts/run_its.sh
1 change: 0 additions & 1 deletion .github/workflows/SlackNotify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
workflow_run:
workflows:
- Build
- Iris sync
- Releasability status
- macOS Nightly Build
- sonar-release
Expand Down
Loading
Loading