2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-12 19:47:27 +00:00

chore: set executable bit on linux ci artifacts

This commit is contained in:
Jan Laupetin
2025-09-09 20:23:23 +02:00
parent 90dea771d2
commit bf35c24380
2 changed files with 12 additions and 2 deletions

View File

@@ -15,6 +15,9 @@ jobs:
build_arch: [x86, x64]
runs-on: ubuntu-latest
container: ubuntu:24.04
defaults:
run:
shell: bash
steps:
- name: Install g++ and multilib
run: |
@@ -38,7 +41,9 @@ jobs:
- name: Build
working-directory: ${{ github.workspace }}
run: make -C build -j$(nproc) config=release_${{ matrix.build_arch }} all
run: |
make -C build -j$(nproc) config=release_${{ matrix.build_arch }} all
chmod +x build/bin/Release_${{ matrix.build_arch }}/{ImageConverter,Unlinker,Linker}
- name: Test
working-directory: ${{ github.workspace }}/build/lib/Release_${{ matrix.build_arch }}/tests