Skip to content

Commit

Permalink
fix: Wrong indentation on the GCC Windows tests (GitHub actions)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed Aug 8, 2024
1 parent e88398a commit 225ffbf
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/tests-gcc-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,41 +29,41 @@ jobs:
with:
fetch-depth: 0

- name: '${{ matrix.icon }} Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
cache: true
update: true
install: >-
git
pacboy: >-
toolchain:p
cmake:p
ninja:p
- name: '${{ matrix.icon }} Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
cache: true
update: true
install: >-
git
pacboy: >-
toolchain:p
cmake:p
ninja:p
- name: Cache 3rd party dependencies
id: cache-3rd-party-deps-restore
uses: actions/cache/restore@v3
with:
path: |
install
key: ${{ runner.os }}-cache-3rd-party-deps
- name: Cache 3rd party dependencies
id: cache-3rd-party-deps-restore
uses: actions/cache/restore@v3
with:
path: |
install
key: ${{ runner.os }}-cache-3rd-party-deps


- name: Caching project dependencies
id: project-cache
uses: Swatinem/rust-cache@v2
- name: Caching project dependencies
id: project-cache
uses: Swatinem/rust-cache@v2

- name: Running the tests for the project
run: |
cd zork++
RUST_LOG=trace cargo test 2>&1 gcc_windows --color=always --no-fail-fast -- --nocapture --show-output --test-threads=1
- name: Running the tests for the project
run: |
cd zork++
RUST_LOG=trace cargo test 2>&1 gcc_windows --color=always --no-fail-fast -- --nocapture --show-output --test-threads=1

- name: Cache 3rd party dependencies
id: cache-save-3rd-party-deps
uses: actions/cache/save@v3
with:
path: |
install
key: ${{ steps.cache-3rd-party-deps-restore.outputs.cache-primary-key }}
- name: Cache 3rd party dependencies
id: cache-save-3rd-party-deps
uses: actions/cache/save@v3
with:
path: |
install
key: ${{ steps.cache-3rd-party-deps-restore.outputs.cache-primary-key }}

0 comments on commit 225ffbf

Please sign in to comment.