]> gitweb.factorcode.org Git - factor.git/commitdiff
Revert "github: disable windows for now."
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 1 Aug 2022 14:14:01 +0000 (07:14 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 1 Aug 2022 14:14:01 +0000 (07:14 -0700)
This reverts commit 82135888f48370f2e7075c525836ca926a20d318.

.github/workflows/build.yml

index 7b93798806b7de7ffcbe9011ab4305f964dc9c83..41f6624fad974d2c531ad4dc68d60b52d5afea73 100644 (file)
@@ -32,3 +32,22 @@ jobs:
       run: './factor -run=tools.test resource:core'
     - name: help-lint
       run: './factor -run=help.lint resource:core resource:basis'
+
+  build-windows:
+    runs-on: windows-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: build
+      shell: cmd
+      run: |
+        call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
+        build.cmd net-bootstrap
+    - name: load-all
+      shell: cmd
+      run: 'factor -e="USING: memory namespaces parser.notes vocabs.hierarchy ; parser-quiet? off load-all save"'
+    - name: test
+      shell: cmd
+      run: 'factor -run=tools.test resource:core'
+    - name: help-lint
+      shell: cmd
+      run: 'factor -run=help.lint resource:core resource:basis'