Skip to content

Commit cea5ba8

Browse files
committed
release 2.3.0
1 parent 171d66a commit cea5ba8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1577
-954
lines changed

.github/workflows/spa-client-cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.settings.os }}
2727
steps:
2828
- name: Get version
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
submodules: true
3232
- uses: Swatinem/rust-cache@v2

.github/workflows/spa-server-cd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
docker:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717
- name: Set up Docker Buildx
@@ -44,7 +44,7 @@ jobs:
4444
binFile:
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
submodules: true
5050
- uses: Swatinem/rust-cache@v2

.github/workflows/spa-server-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
check_server:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717
- uses: Swatinem/rust-cache@v2
1818
- name: run integration test
1919
# --show-output
20-
run: cargo test -p tests --test starter -j 1 -- --test-threads 1
20+
run: cargo test -p tests --test http_test -j 1 -- --test-threads 1
2121
- name: run pebble
2222
run: ./run_pebble.sh
2323
working-directory: ./tests/bash/
2424
- name: run acme integration test
2525
run: cargo test -p tests --test acme_test -j 1 -- --test-threads 1
2626
- name: run spa-client test
27-
run: cargo test -p spa-client
28-
- name: run spa-client test
27+
run: cargo test -p spa-client -j 1 -- --test-threads 1
28+
- name: run spa-server test
2929
run: cargo test -p spa-server

.github/workflows/spa-server-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
docker:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
submodules: true
1919
- name: Set up Docker Buildx

0 commit comments

Comments
 (0)