Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackhex committed Feb 7, 2024
1 parent 1658373 commit dec0be7
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions .github/workflows/check-repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,32 @@ on:
workflow_dispatch:

jobs:
check-repository:
runs-on: ubuntu-latest
build:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
location: ${{ github.workspace }}
release: true
update: true
cache: false
install: base-devel

- shell: msys2 {0}
run: |
uname -a
- name: Checkout repository
uses: actions/checkout@v4

- shell: msys2 {0}
- name: Test
run: |
ls
- name: Install toolchain
run: |
.github/workflows/install-toolchain.sh
msys2 -c "pwd"
msys2 -c "echo `cygpath \"${{ github.workspace }}\"`/.github/scripts/install-toolchain.sh"
msys2 -c "/d/a/msys2-woarm64-build/msys2-woarm64-build/.github/scripts/install-toolchain.sh"
test:
needs: [build]
runs-on: [Windows, GCC, ARM64]

steps:
- name: Checkout repository
uses: actions/checkout@v4

0 comments on commit dec0be7

Please sign in to comment.