fix: better CI streamline for multi-platform

This commit is contained in:
Gaukas Wang 2023-08-08 19:58:19 -06:00
parent d0cb023440
commit e0588cd61d
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
3 changed files with 13 additions and 39 deletions

View file

@ -1,7 +1,7 @@
# This workflow will build a golang project # This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: "Go 1.20" name: "Go"
on: on:
push: push:
@ -10,18 +10,20 @@ on:
branches: [ "master" ] branches: [ "master" ]
jobs: jobs:
go_build_test: build:
runs-on: ubuntu-latest strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
go: [ "1.20.x", "1.21.0" ]
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-go@v4
- name: Set up Go
uses: actions/setup-go@v4
with: with:
go-version: '1.20.7' go-version: ${{ matrix.go }}
- run: go version
- name: Build - name: Build
run: go build -v ./... run: go build -v ./...
- name: Test - name: Test
run: go test -v ./... run: go test -v ./...

View file

@ -1,27 +0,0 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: "Go 1.21"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
go_build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.0'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...

View file

@ -1,6 +1,5 @@
# ![uTLS](logo_small.png) uTLS # ![uTLS](logo_small.png) uTLS
[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml) [![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go.yml)
[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml)
[![godoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/refraction-networking/utls#UConn) [![godoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/refraction-networking/utls#UConn)
--- ---
uTLS is a fork of "crypto/tls", which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by "crypto/tls", this library merely changes ClientHello part of it and provides low-level access. uTLS is a fork of "crypto/tls", which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by "crypto/tls", this library merely changes ClientHello part of it and provides low-level access.