34 lines
796 B
YAML
34 lines
796 B
YAML
# GitHub action to build LAMMPS on Windows with Visual C++
|
|
name: "Native Windows Compilation"
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
|
|
jobs:
|
|
build:
|
|
name: Windows Compilation Test
|
|
if: ${{ github.repository == 'lammps/lammps' }}
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Building LAMMPS via CMake
|
|
shell: bash
|
|
run: |
|
|
cmake -C cmake/presets/windows.cmake \
|
|
-S cmake -B build \
|
|
-D BUILD_SHARED_LIBS=on \
|
|
-D LAMMPS_EXCEPTIONS=on
|
|
cmake --build build --config Release
|
|
|
|
- name: Run LAMMPS executable
|
|
shell: bash
|
|
run: |
|
|
./build/Release/lmp.exe -h
|
|
./build/Release/lmp.exe -in bench/in.lj
|