268 fix middleware response #1076
Workflow file for this run
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: Build and test Nim | |
on: | |
# push: | |
# paths-ignore: | |
# - '*.md' | |
# - 'documents/*' | |
# テストはPRだけ | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- 'documents/*' | |
jobs: | |
# WIP でジョブがスキップされてもCIが失敗した扱いにならないようにするため | |
skip: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Skip job" | |
# WIP がコミットメッセージに含まれているとジョブを起動しない | |
before: | |
runs-on: ubuntu-latest | |
if: "! contains(github.event.head_commit.message, 'WIP')" | |
steps: | |
- run: echo "no WIP" | |
build: | |
runs-on: ubuntu-latest | |
needs: before | |
strategy: | |
matrix: | |
nim-version: | |
- 1.6.18 | |
- 2.0.2 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache choosenim | |
id: cache-choosenim | |
uses: actions/cache@v1 | |
with: | |
path: ~/.choosenim | |
key: ${{ runner.os }}-choosenim-${{ matrix.nim-version }} | |
- name: Cache nimble | |
id: cache-nimble | |
uses: actions/cache@v1 | |
with: | |
path: ~/.nimble | |
key: ${{ runner.os }}-nimble-${{ matrix.nim-version }} | |
- uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: ${{ matrix.nim-version }} | |
- name: Package Refresh | |
run: nimble refresh | |
- name: Build | |
run: nimble build -Y | |
- name: Install | |
run: nimble install -Y | |
test-on-docker-nim-v1: | |
runs-on: ubuntu-latest | |
needs: before | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: | | |
docker compose -f compose.test.yaml up -d | |
docker compose -f compose.test.yaml run app-ubuntu-v1 sh runTest.sh | |
test-on-docker-nim-v2: | |
runs-on: ubuntu-latest | |
needs: before | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: | | |
docker compose -f compose.test.yaml up -d | |
docker compose -f compose.test.yaml run app-ubuntu sh runTest.sh | |
# test-on-docker: | |
# runs-on: ubuntu-22.04 | |
# needs: before | |
# strategy: | |
# matrix: | |
# nim-version: | |
# - 1.6.16 | |
# - 2.0.0 | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Build docker image | |
# run: docker compose build --build-arg VERSION=${{ matrix.nim-version }} app-ubuntu | |
# - name: Test | |
# run: docker compose run app-ubuntu sh runTest.sh | |
# マルチスレッドは使わない | |
# - name: Test multi-thread | |
# run: | | |
# echo '' >> tests/config.nims | |
# echo 'switch("threads", "on")' >> tests/config.nims | |
# echo 'switch("threadAnalysis", "off")' >> tests/config.nims | |
# docker-compose run app-ubuntu sh /root/project/runTest.sh | |
# アプリケーションの方を使うことにした | |
# https://github.com/marketplace/actions/release-drafter | |
# create-tag-draft: | |
# runs-on: ubuntu-latest | |
# if: github.ref == 'refs/heads/main' | |
# needs: | |
# - build | |
# - test-on-docker | |
# steps: | |
# - name: Release Drafter | |
# uses: release-drafter/release-drafter@v5 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |