Skip to content

Commit

Permalink
upgrade gsvc to 1.2.19-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
windywany committed Apr 18, 2024
1 parent 3d96ef4 commit f4b25c9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Deploy to OSSRH
on:
push:
tags:
- v*
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
Expand Down Expand Up @@ -49,11 +49,16 @@ jobs:
wait-on: http-get://localhost:${{ env.SERVER_PORT_NO }}/actuator/health
- name: Download ijhttp tools
run: |-
curl -f -L -o ijhttp.zip "https://jb.gg/ijhttp/latest"
unzip ijhttp.zip
./ijhttp/ijhttp --version
#curl -f -L -o ijhttp.zip "https://jb.gg/ijhttp/latest"
#unzip ijhttp.zip
#./ijhttp/ijhttp --version
docker pull jetbrains/intellij-http-client:233.15026.9
docker tag jetbrains/intellij-http-client:233.15026.9 ijhttp
- name: Execute HTTP requests
run: ./ijhttp/ijhttp oss-server/src/test/http/test.http oss-server/src/test/http/chunked.http
run: |-
#./ijhttp/ijhttp oss-server/src/test/http/test.http oss-server/src/test/http/chunked.http
docker run --rm -v ./oss-server:/workdir --add-host host.docker.internal:host-gateway ijhttp -D \
src/test/http/chunked.http src/test/http/test.http
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [ "build" ]
Expand Down
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>apzda-cloud-gsvc-parent</artifactId>
<groupId>com.apzda.cloud</groupId>
<version>1.2.18</version>
<version>1.2.19-SNAPSHOT</version>
</parent>
<artifactId>oss</artifactId>
<version>1.0.7-SNAPSHOT</version>
Expand All @@ -29,6 +29,7 @@
</modules>

<properties>
<gsvc.compiler.version>1.2.19-SNAPSHOT</gsvc.compiler.version>
<maven.plugin.validation>NONE</maven.plugin.validation>
</properties>

Expand Down Expand Up @@ -79,6 +80,22 @@
<url>https://docs.apzda.com/oss</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>ossrh</id>
<name>OSS Repository Host</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit f4b25c9

Please sign in to comment.