mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-28 05:39:00 +08:00
37 lines
817 B
YAML
37 lines
817 B
YAML
name: build
|
|
on: [push]
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install packages
|
|
run: sudo apt-get install libmbedtls-dev
|
|
- name: make
|
|
run: make test test++
|
|
- name: openssl
|
|
run: make test SSL=OPENSSL
|
|
- name: examples
|
|
run: make ex
|
|
macos:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install packages
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install jq mbedtls openssl
|
|
- name: make
|
|
run: make test++ upload-coverage
|
|
- name: openssl
|
|
run: make test SSL=OPENSSL
|
|
- name: exports
|
|
run: make mg_prefix
|
|
windows:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: vc98
|
|
run: make vc2017
|
|
- name: vc2017
|
|
run: make vc2017
|
|
|