From 7e88693959367bca205ab29e28371c3118e6c851 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 1 Aug 2022 07:14:01 -0700 Subject: [PATCH] Revert "github: disable windows for now." This reverts commit 82135888f48370f2e7075c525836ca926a20d318. --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b93798806..41f6624fad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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' -- 2.34.1