Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

experiment: enable integration tests for windows

+9 -3
+9 -3
.github/workflows/ci.yaml
··· 53 53 - os: windows-latest 54 54 target: x86_64-pc-windows-msvc 55 55 use-cross: false 56 - run-integration-tests: false # https://github.com/erlef/setup-beam/issues/147 56 + run-integration-tests: true 57 57 steps: 58 58 - name: Checkout repository 59 59 uses: actions/checkout@v2 ··· 118 118 working-directory: ./test/project_erlang 119 119 if: ${{ matrix.run-integration-tests }} 120 120 121 - - name: test/project_erlang export erlang-shipment 121 + - name: test/project_erlang export erlang-shipment (non-windows) 122 122 run: | 123 123 gleam export erlang-shipment 124 124 ./build/erlang-shipment/entrypoint.sh run 125 125 working-directory: ./test/project_erlang 126 - # erlang-shipment does not support Windows 127 126 if: ${{ matrix.os != 'windows-latest' && matrix.run-integration-tests }} 127 + 128 + - name: test/project_erlang export erlang-shipment (windows) 129 + run: | 130 + gleam export erlang-shipment 131 + .\build\erlang-shipment\entrypoint.ps1 run 132 + working-directory: ./test/project_erlang 133 + if: ${{ matrix.os == 'windows-latest' && matrix.run-integration-tests }} 128 134 129 135 - name: test/project_javascript 130 136 run: |