Skip to content

Commit

Permalink
TEST windows job
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarnotel committed Dec 8, 2023
1 parent 21aa6ff commit 558d5f2
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .github/workflows/job1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,34 @@ jobs:
name: Job1 - Windows
runs-on: windows-latest

defaults:
run:
shell: msys2 {0}
steps:
- name: TODO
run: echo TODO
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
mingw-w64-x86_64-toolchain
m4
patch
git
flex
bison
- uses: actions/checkout@v4

- name: Configure
run: |
tar xvf AutoGeneratedFile.tar.gz
./configure --without-mpi --prefix="${HOME}/freefem"
- name: Build
run: make -j2

- name: Check
continue-on-error: true
run: make check

- name: Install
run: make install

0 comments on commit 558d5f2

Please sign in to comment.