mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 20:33:58 +01:00
Some checks failed
gofmt / Run gofmt (push) Successful in 40s
smoke-extra / Run extra smoke tests (push) Failing after 20s
smoke / Run multi node smoke test (push) Failing after 1m32s
Build and test / Build all and test on ubuntu-linux (push) Failing after 20m31s
Build and test / Build and test on linux with boringcrypto (push) Failing after 2m48s
Build and test / Build and test on linux with pkcs11 (push) Failing after 2m57s
Build and test / Build and test on macos-latest (push) Has been cancelled
Build and test / Build and test on windows-latest (push) Has been cancelled
This doesn't change our go.mod, which still only requires go1.22 as a minimum. It only changes our builds to use go1.24 so we have the latest improvements.
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
name: smoke
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/smoke**'
|
|
- '**Makefile'
|
|
- '**.go'
|
|
- '**.proto'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
jobs:
|
|
|
|
smoke:
|
|
name: Run multi node smoke test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
check-latest: true
|
|
|
|
- name: build
|
|
run: make bin-docker CGO_ENABLED=1 BUILD_ARGS=-race
|
|
|
|
- name: setup docker image
|
|
working-directory: ./.github/workflows/smoke
|
|
run: ./build.sh
|
|
|
|
- name: run smoke
|
|
working-directory: ./.github/workflows/smoke
|
|
run: ./smoke.sh
|
|
|
|
- name: setup relay docker image
|
|
working-directory: ./.github/workflows/smoke
|
|
run: ./build-relay.sh
|
|
|
|
- name: run smoke relay
|
|
working-directory: ./.github/workflows/smoke
|
|
run: ./smoke-relay.sh
|
|
|
|
- name: setup docker image for P256
|
|
working-directory: ./.github/workflows/smoke
|
|
run: NAME="smoke-p256" CURVE=P256 ./build.sh
|
|
|
|
- name: run smoke-p256
|
|
working-directory: ./.github/workflows/smoke
|
|
run: NAME="smoke-p256" ./smoke.sh
|
|
|
|
timeout-minutes: 10
|