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
2 changes: 1 addition & 1 deletion .github/workflows/aravis-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: meson test -C build/ -v
- name: Valgrind
run: meson test -C build/ -v --setup=valgrind
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: Linux_Meson_Testlog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aravis-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CC: gcc
- name: Tests
run: meson test -C build/ -v
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: MacOS_Meson_Testlog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aravis-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: meson test
run: |
meson test -C ./build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{matrix.sys}}_Meson_Testlog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aravis-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
.\build\activate_run.ps1
meson test -C .\build
- name: logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: msvc_${{ matrix.version }}_${{ matrix.arch }}_${{ matrix.build_type_meson }}_Meson_Testlog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aravis-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
run: |
meson test -C .\build
- name: logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: msvc_${{ matrix.version }}_${{ matrix.arch }}_${{ matrix.build_type_meson }}_Meson_Testlog
Expand Down
2 changes: 1 addition & 1 deletion aravis-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def package_files(directorys):
return paths

def get_plat():
if platform.system() == 'Linux':
if platform.system() == 'Linux' and platform.machine() == 'x86_64':
plat_form = "manylinux1_x86_64"
else:
plat_form = sysconfig.get_platform()
Expand Down