diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 02:58:05 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-24 03:48:55 +0300 |
commit | 617924cad71502f42ef4b9c5c5b588895948e2d2 (patch) | |
tree | 7f9bb15a406a439966ab40ed2f153b960cab53b3 | |
parent | bye-bye, AppVeyor! (diff) | |
download | windows-env-617924cad71502f42ef4b9c5c5b588895948e2d2.tar.gz windows-env-617924cad71502f42ef4b9c5c5b588895948e2d2.zip |
add GitHub workflow
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..af3190c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,40 @@ +name: CI + +on: + push: + pull_request: + schedule: + # Weekly, at 5:30 AM on Sunday (somewhat randomly chosen). + - cron: '30 5 * * 0' + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + platform: [x86_64, i386] + runs-on: windows-latest + name: 'Build: ${{ matrix.platform }}' + env: + platform: '${{ matrix.platform }}' + defaults: + run: + shell: pwsh + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Stack + uses: haskell/actions/setup@v1 + with: + enable-stack: true + stack-no-global: true + # TODO: caching. + - name: Build dependencies + run: stack --no-terminal build --arch '${{ matrix.platform }}' --only-dependencies + - name: Build + run: stack --no-terminal build --arch '${{ matrix.platform }}' --copy-bins --local-bin-path ../install + - name: Upload the binaries + uses: actions/upload-artifact@v2 + with: + name: 'windows-env-${{ matrix.platform }}' + path: '${{ runner.workspace }}/install/' |