Skip to content

Commit

Permalink
CICD: Fix windows
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Oct 24, 2023
1 parent 63e3dc7 commit ff8f6e6
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ jobs:
uses: actions/checkout@v4

- name: Build test
run: |
cd test || exit 12
./scripts/compil.sh
./build/test-ecs
run: ./scripts/compil.sh
working-directory: test

- name: Run test
run: ./build/test-ecs
working-directory: test

test-ecs-macos:
runs-on: macos-latest
Expand All @@ -61,10 +63,12 @@ jobs:
brew install llvm
- name: Build test
run: |
cd test || exit 12
./scripts/compil.sh
./build/test-ecs
run: ./scripts/compil.sh
working-directory: test

- name: Run test
run: ./build/test-ecs
working-directory: test

test-ecs-windows:
runs-on: windows-latest
Expand All @@ -74,10 +78,12 @@ jobs:
uses: actions/checkout@v4

- name: Build test
run: |
cd test || exit 12
./scripts/compil.sh
./build/test-ecs.exe
run: ./scripts/compil.ps1
working-directory: test

- name: Run test
run: ./build/test-ecs.exe
working-directory: test

release-linux:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ff8f6e6

Please sign in to comment.