Update haskell.yml
Former-commit-id: ebedc27242c914aacfaf9a207bb35812b2b74f04 Former-commit-id: 6bf5778e89ba53a6b4d7f43da7bddf28b880fce1 [formerly 861de8d29d48fcd429afdf0044dac66c9499a9a7] [formerly 55bc06c20cff32c0aab4af2fd942a5edb493ddc7 [formerly d7dc158d688bc902098589ee5b939302d0798bd7 [formerly d7dc158d688bc902098589ee5b939302d0798bd7 [formerly d7dc158d688bc902098589ee5b939302d0798bd7 [formerly a99f3069521de85317479f64ad7adcb65bece686]]]]] Former-commit-id: f5427eba95f4e82777a58586d562a6dc9f6ffd53 [formerly 6555f0c0415525722e3fa5599fd986fdb85e48d5] Former-commit-id: f2a890dde05c3f0800033e7f021f347f43bb4472 Former-commit-id: b48431a398a353c1b1949aaf90b623eb82978e0b Former-commit-id: cbd43b1b97ad986273760ef43dd9dc8c437bfe60 Former-commit-id: aa336c1bd5cab4e72e2c8086b0b4ac9b40219cfa [formerly 81f9219b89bc39e2526b641806ee748f2f79ae48] Former-commit-id: 8ddbd2fa08e02271aa55c7954d84e1358b9a8963
This commit is contained in:
parent
737ea1860f
commit
c41c9405ba
1 changed files with 25 additions and 5 deletions
30
.github/workflows/haskell.yml
vendored
30
.github/workflows/haskell.yml
vendored
|
@ -1,12 +1,10 @@
|
|||
name: Haskell CI
|
||||
name: Build bot
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-haskell@v1
|
||||
|
@ -22,5 +20,27 @@ jobs:
|
|||
|
||||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: wstunnel
|
||||
name: wstunnel-linux-x64
|
||||
path: wstunnel
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Install stack
|
||||
run: |
|
||||
curl -sSL https://get.haskellstack.org/ | sh
|
||||
|
||||
- name: Setup GHC
|
||||
run: |
|
||||
stack setup
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
stack install
|
||||
|
||||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: wstunnel-windows-x64.exe
|
||||
path: C:\Users\runneradmin\AppData\Roaming\local\bin\wstunnel.exe
|
||||
|
|
Loading…
Reference in a new issue