diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-08 13:34:03 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-08 13:34:03 (GMT) |
commit | d4ef5a261ac2cfb5615683a4daad2e89a693f7d3 (patch) | |
tree | 0eface6db5f41a93a40075da69a58ba18c62ff7f | |
parent | 81a445ad4644c9f44c21bf6ffa5620a5badf800a (diff) | |
download | tcl-d4ef5a261ac2cfb5615683a4daad2e89a693f7d3.zip tcl-d4ef5a261ac2cfb5615683a4daad2e89a693f7d3.tar.gz tcl-d4ef5a261ac2cfb5615683a4daad2e89a693f7d3.tar.bz2 |
Added experimental Windows CI build instructions
-rw-r--r-- | .github/workflows/win-build.yml | 22 | ||||
-rw-r--r-- | .project | 15 |
2 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml new file mode 100644 index 0000000..652b34a --- /dev/null +++ b/.github/workflows/win-build.yml @@ -0,0 +1,22 @@ +name: Windows Build and Test +on: [push] +jobs: + build: + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Init MSVC + uses: ilammy/msvc-dev-cmd@v1 + - name: Build + working-directory: win + run: | + nmake -f makefile.vc all + - name: Build Test Harness + working-directory: win + run: | + nmake -f makefile.vc tcltest + - name: Run Tests + working-directory: win + run: | + nmake -f makefile.vc test @@ -5,7 +5,22 @@ <projects> </projects> <buildSpec> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name> + <triggers>clean,full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + </arguments> + </buildCommand> </buildSpec> <natures> + <nature>org.eclipse.cdt.core.cnature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature> + <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature> </natures> </projectDescription> |