feature: initial support for the HTTP3 (QUIC) #604
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: http | |
on: | |
push: | |
branches: | |
- master | |
- stable | |
pull_request: | |
branches: | |
- master | |
- stable | |
jobs: | |
http_test: | |
name: HTTP plugin (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}}) | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
php: [ "8.2" ] | |
go: [ stable ] | |
os: [ "ubuntu-latest" ] | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v4 # action page: <https://github.com/actions/setup-go> | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Set up PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 # action page: <https://github.com/shivammathur/setup-php> | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: sockets | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
cd tests/php_test_files | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Init Composer Cache # Docs: <https://git.io/JfAKn#php---composer> | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer dependencies | |
run: cd tests/php_test_files && composer update --prefer-dist --no-progress --ansi | |
- name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: Create folders | |
run: | | |
mkdir ./tests/coverage-ci | |
- name: Install Go dependencies | |
run: go mod download | |
- name: Run golang tests with coverage | |
run: | | |
cd tests | |
sudo apt update | |
sudo apt install -y libnss3-tools | |
curl -JLO "https://dl.filippo.io/mkcert/latest?for=linux/amd64" | |
chmod +x mkcert-v*-linux-amd64 | |
sudo cp mkcert-v*-linux-amd64 /usr/local/bin/mkcert | |
mkcert -install | |
mkcert localhost 127.0.0.1 ::1 | |
mkcert -client localhost 127.0.0.1 ::1 | |
cp -r localhost+2-client-key.pem localhost+2-client.pem localhost+2-key.pem localhost+2.pem test-certs/ | |
cp -r $(mkcert -CAROOT)/rootCA.pem test-certs/ | |
docker-compose -f env/docker-compose-otel.yaml up -d | |
sleep 30 | |
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=$(cat pkgs.txt) -coverprofile=./coverage-ci/http.out -covermode=atomic ./... | |
docker compose -f env/docker-compose-otel.yaml down | |
- name: Run HTTP unit tests with coverage | |
run: | | |
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=$(cat ./tests/pkgs.txt) -coverprofile=./tests/coverage-ci/httpu.out -covermode=atomic ./... | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./tests/coverage-ci/httpu.out | |
codecov: | |
name: Upload codecov | |
runs-on: ubuntu-latest | |
needs: | |
- http_test | |
timeout-minutes: 60 | |
steps: | |
- name: Download code coverage results | |
uses: actions/download-artifact@v3 | |
- run: | | |
cd coverage | |
echo 'mode: atomic' > summary.txt | |
tail -q -n +2 *.out >> summary.txt | |
sed -i '2,${/roadrunner/!d}' summary.txt | |
- name: upload to codecov | |
uses: codecov/codecov-action@v3 # Docs: <https://github.com/codecov/codecov-action> | |
with: | |
file: ./coverage/summary.txt | |
fail_ci_if_error: false |