From 617924cad71502f42ef4b9c5c5b588895948e2d2 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 24 Jan 2021 02:58:05 +0300 Subject: add GitHub workflow --- .github/workflows/ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/ci.yml 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/' -- cgit v1.2.3