Skip to content

Commit

Permalink
release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timzaak committed Jun 30, 2024
1 parent 171d66a commit cea5ba8
Show file tree
Hide file tree
Showing 53 changed files with 1,577 additions and 954 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spa-client-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ${{ matrix.settings.os }}
steps:
- name: Get version
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- uses: Swatinem/rust-cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spa-server-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Docker Buildx
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
binFile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: Swatinem/rust-cache@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/spa-server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
check_server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: Swatinem/rust-cache@v2
- name: run integration test
# --show-output
run: cargo test -p tests --test starter -j 1 -- --test-threads 1
run: cargo test -p tests --test http_test -j 1 -- --test-threads 1
- name: run pebble
run: ./run_pebble.sh
working-directory: ./tests/bash/
- name: run acme integration test
run: cargo test -p tests --test acme_test -j 1 -- --test-threads 1
- name: run spa-client test
run: cargo test -p spa-client
- name: run spa-client test
run: cargo test -p spa-client -j 1 -- --test-threads 1
- name: run spa-server test
run: cargo test -p spa-server
2 changes: 1 addition & 1 deletion .github/workflows/spa-server-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Docker Buildx
Expand Down
Loading

0 comments on commit cea5ba8

Please sign in to comment.