little fix #817
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing 👨🔬 | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'dev' | |
paths-ignore: | |
- 'docs/**' | |
- '.github/ISSUE_TEMPLATE/*' | |
- '*.md' | |
- '*.nimble' | |
- '.gitignore' | |
- 'LICENSE' | |
- '**/FUNDING.yml' | |
- '**/gh-pages.yml' | |
- '**/examples.yml' | |
- '**/language_bindings.yml' | |
- '**/examples/website/**' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '.github/ISSUE_TEMPLATE/*' | |
- '*.md' | |
- '*.nimble' | |
- '.gitignore' | |
- 'LICENSE' | |
- '**/FUNDING.yml' | |
- '**/gh-pages.yml' | |
- '**/examples.yml' | |
- '**/language_bindings.yml' | |
- '**/examples/website/**' | |
jobs: | |
dependencies: | |
name: Install dependencies 🧩 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
nim_version: | |
- '2.0.0' | |
- '2.0.4' | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: ${{ matrix.nim_version }} | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Install Dependencies 🔃 | |
run: | | |
nimble refresh | |
nimble install -y -d | |
async_http_server: | |
name: Test C via AsyncHttpServer 🧪 | |
needs: dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Build C tests (Default HTTP Server) ⚡ | |
run: | | |
export PATH=/home/runner/.nimble/bin:$PATH | |
cd tests | |
echo "###===--- Default for" $file "---===###" | |
for file in $(ls -v testc*.nim); do | |
echo "###===--- C Test for " $file " via stdlib ---===###" | |
/home/runner/.nimble/bin/nim c -d:debug --hints:off --warnings:off $file | |
done | |
shell: bash | |
micro_async_http_server: | |
name: Test C via MicroAsyncHttpServer 🧪 | |
needs: dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Build C tests (MicroAsyncHttpServer) ⚡ | |
run: | | |
cd tests | |
for file in $(ls -v testc*.nim); do | |
echo "###===--- C Test for " $file " via MicroAsyncHttpServer ---===###" | |
/home/runner/.nimble/bin/nim c -d:micro -d:debug --hints:off --warnings:off $file | |
done | |
shell: bash | |
httpx: | |
name: Test C via HttpX 🧪 | |
needs: dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Build C tests (HttpX HTTP Server) ⚡ | |
run: | | |
cd tests | |
for file in $(ls -v testc*.nim); do | |
echo "###===--- C Test for " $file " via Httpx ---===###" | |
/home/runner/.nimble/bin/nim c -d:httpx -d:debug --hints:off --warnings:off $file | |
done | |
shell: bash | |
httpbeast: | |
name: Test C via HttpBeast 🧪 | |
needs: dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Build C tests (HttpBeast HTTP Server) ⚡ | |
run: | | |
cd tests | |
for file in $(ls -v testc*.nim); do | |
echo "###===--- C Test for " $file " via HttpBeast ---===###" | |
/home/runner/.nimble/bin/nim c -d:beast -d:debug --hints:off --warnings:off $file | |
done | |
shell: bash | |
js: | |
name: Test with JavaScript 🧪 | |
needs: dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
env: | |
TIMEOUT_EXIT_STATUS: 124 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.nimble | |
~/.choosenim | |
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }} | |
- name: Build JS tests 🍍 | |
run: | | |
cd tests | |
for file in $(ls -v testjs*.nim); do | |
echo "###===--- JS Test for " $file " ---===###" | |
/home/runner/.nimble/bin/nim js -d:debug --hints:off --warnings:off $file | |
done | |
shell: bash |