-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Michał Bartoszkiewicz <[email protected]> Co-authored-by: Jan Chorowski <[email protected]> Co-authored-by: Xavier Gendre <[email protected]> Co-authored-by: Adrian Kosowski <[email protected]> Co-authored-by: Jakub Kowalski <[email protected]> Co-authored-by: Sergey Kulik <[email protected]> Co-authored-by: Mateusz Lewandowski <[email protected]> Co-authored-by: Mohamed Malhou <[email protected]> Co-authored-by: Krzysztof Nowicki <[email protected]> Co-authored-by: Richard Pelgrim <[email protected]> Co-authored-by: Kamil Piechowiak <[email protected]> Co-authored-by: Paweł Podhajski <[email protected]> Co-authored-by: Olivier Ruas <[email protected]> Co-authored-by: Przemysław Uznański <[email protected]> Co-authored-by: Sebastian Włudzik <[email protected]> GitOrigin-RevId: 91ccb907441defe174d6e0b31342822357bfe4bf
- Loading branch information
1 parent
49ef63c
commit 1419af3
Showing
113 changed files
with
3,487 additions
and
1,892 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ jobs: | |
timeout-minutes: 45 | ||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
|
||
- name: Git checkout | ||
uses: actions/[email protected] | ||
|
@@ -150,15 +150,15 @@ jobs: | |
timeout-minutes: 45 | ||
steps: | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Create dir for wheels | ||
run: | | ||
mkdir -p wheels | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
with: | ||
name: pathway-x86-x64 | ||
path: ./wheels/ | ||
|
@@ -173,7 +173,7 @@ jobs: | |
WHEEL=(./wheels/pathway-*.whl) | ||
pip install --prefer-binary "${WHEEL}[tests]" | ||
# --confcutdir anything below to avoid picking REPO_TOP_DIR/conftest.py | ||
python -m pytest --confcutdir "${ENV_NAME}" --doctest-modules --pyargs pathway | ||
python -m pytest -v --confcutdir "${ENV_NAME}" --doctest-modules --pyargs pathway | ||
Verify_ARM_ARCH: | ||
needs: | ||
|
@@ -194,13 +194,13 @@ jobs: | |
run: | | ||
mkdir -p wheels | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
if: ${{ matrix.os == 'ec2-macOS' }} | ||
with: | ||
name: pathway-arm64 | ||
path: ./wheels/ | ||
|
||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
if: ${{ matrix.os == needs.start-runner.outputs.label }} | ||
with: | ||
name: pathway-arch64 | ||
|
@@ -217,7 +217,7 @@ jobs: | |
PATHWAY_MONITORING_HTTP_PORT=20099 | ||
pip install --prefer-binary "${WHEEL}[tests]" | ||
# --confcutdir anything below to avoid picking REPO_TOP_DIR/conftest.py | ||
python -m pytest --confcutdir "${ENV_NAME}" --doctest-modules --pyargs pathway | ||
python -m pytest -v --confcutdir "${ENV_NAME}" --doctest-modules --pyargs pathway | ||
env: | ||
MACOSX_DEPLOYMENT_TARGET: "10.15" | ||
DEVELOPER_DIR: /Library/Developer/CommandLineTools | ||
|
@@ -251,22 +251,22 @@ jobs: | |
run: | | ||
mkdir -p wheels | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
with: | ||
name: pathway-x86-x64 | ||
path: ./wheels/ | ||
|
||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
with: | ||
name: pathway-arch64 | ||
path: ./wheels/ | ||
|
||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
with: | ||
name: pathway-arm64 | ||
path: ./wheels/ | ||
|
||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v2.1.1 | ||
with: | ||
name: CHANGELOG.md | ||
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
Oops, something went wrong.