Skip to content

build(deps): bump github.com/go-openapi/runtime from 0.24.2 to 0.27.1 #218

build(deps): bump github.com/go-openapi/runtime from 0.24.2 to 0.27.1

build(deps): bump github.com/go-openapi/runtime from 0.24.2 to 0.27.1 #218

Workflow file for this run

name: test
on:
push:
branches: [main]
paths:
- "**.go"
- "go.mod"
- "go.sum"
- "**/go.mod"
- "**/go.sum"
- "sdk/nodejs/**.js"
- "sdk/python/**.py"
- ".github/workflows/test.yml"
pull_request:
branches: [main]
paths:
- "**.go"
- "go.mod"
- "go.sum"
- "**/go.mod"
- "**/go.sum"
- "sdk/nodejs/**.js"
- "sdk/python/**.py"
- ".github/workflows/test.yml"
# Enable manual trigger for easy ad-hoc debugging
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_dispatchinputs
workflow_dispatch:
jobs:
engine:
runs-on: ubuntu-22.04-16c-64g-600gb
steps:
- name: Set up QEMU
run: |
docker run --rm --privileged tonistiigi/binfmt:latest --install all
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- run: ./hack/make engine:build
- run: echo `pwd`/bin >> $GITHUB_PATH
- run: ./hack/make engine:test
- name: Print Engine Logs
if: always()
run: |
docker logs test-dagger-engine
- name: Print Kernel Logs
if: always()
run: |
sudo dmesg
engine-race:
needs: [engine] # prioritize fast feedback + don't bother if tests fail
name: engine with -race
runs-on: ubuntu-22.04-16c-64g-600gb
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- run: ./hack/make engine:build
- run: echo `pwd`/bin >> $GITHUB_PATH
- run: ./hack/make engine:testrace
- name: Print Engine Logs
if: always()
run: |
docker logs test-dagger-engine
- name: Print Kernel Logs
if: always()
run: |
sudo dmesg
sdk-go:
name: sdk / go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- run: ./hack/make sdk:go:test
sdk-python:
name: sdk / python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- run: ./hack/make sdk:python:test
sdk-nodejs:
name: sdk / nodejs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- run: ./hack/make sdk:nodejs:test