forked from jcasbin/jcasbin-mongo-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add CI and release automation configuration
- Loading branch information
Showing
3 changed files
with
277 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql | ||
env: | ||
MYSQL_ROOT_PASSWORD: casbin_test | ||
MYSQL_DATABASE: casbin | ||
MYSQL_USER: casbin_test | ||
MYSQL_PASSWORD: TEST_casbin | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_DB: casbin | ||
POSTGRES_USER: casbin_test | ||
POSTGRES_PASSWORD: TEST_casbin | ||
ports: | ||
- 5432:5432 | ||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | ||
sqlserver: | ||
image: mcr.microsoft.com/mssql/server:2019-latest | ||
env: | ||
SA_PASSWORD: 9G3iqmzQDw9zCXII | ||
ACCEPT_EULA: Y | ||
ports: | ||
- 1433:1433 | ||
mongodb: | ||
image: mongo | ||
ports: | ||
- 27017:27017 | ||
options: --health-cmd="mongo --eval 'db.adminCommand(\"ping\")'" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '0' | ||
|
||
- name: Install mssql-tools | ||
run: | | ||
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | ||
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list | ||
sudo apt-get update | ||
sudo apt-get install mssql-tools unixodbc-dev | ||
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile | ||
- name: Create database for sqlserver | ||
run: sqlcmd -S 127.0.0.1,1433 -U sa -P '9G3iqmzQDw9zCXII' -Q "CREATE DATABASE casbin" | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
server-id: ossrh | ||
server-username: OSSRH_JIRA_USERNAME | ||
server-password: OSSRH_JIRA_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg-passphrase: GPG_PASSPHRASE | ||
|
||
- name: Build with Maven | ||
run: mvn clean test cobertura:cobertura | ||
|
||
- name: Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Semantic Release | ||
run: | | ||
npm install -g @conveyal/maven-semantic-release semantic-release | ||
semantic-release --prepare @conveyal/maven-semantic-release --publish @semantic-release/github,@conveyal/maven-semantic-release --verify-conditions @semantic-release/github,@conveyal/maven-semantic-release --verify-release @conveyal/maven-semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
OSSRH_JIRA_USERNAME: ${{ secrets.OSSRH_JIRA_USERNAME }} | ||
OSSRH_JIRA_PASSWORD: ${{ secrets.OSSRH_JIRA_PASSWORD }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<settings> | ||
<servers> | ||
<server> | ||
<id>ossrh</id> | ||
<username>${OSSRH_JIRA_USERNAME}</username> | ||
<password>${OSSRH_JIRA_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<profiles> | ||
<profile> | ||
<id>ossrh</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<properties> | ||
<gpg.executable>gpg</gpg.executable> | ||
<gpg.keyname>${GPG_KEY_NAME}</gpg.keyname> | ||
<gpg.passphrase>${GPG_PASSPHRASE}</gpg.passphrase> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
</settings> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,178 @@ | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.jim</groupId> | ||
<groupId>org.casbin</groupId> | ||
<artifactId>jcasbin-mongo-adapter</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<name>Mongo Adapter for JCasbin</name> | ||
<description>Load policy from Mongo supported database or save policy to it</description> | ||
<url>https://github.com/jcasbin/jcasbin-mongo-adapter</url> | ||
<inceptionYear>2018</inceptionYear> | ||
|
||
<issueManagement> | ||
<system>Github</system> | ||
<url>https://github.com/jcasbin/jcasbin-mongo-adapter/issues</url> | ||
</issueManagement> | ||
|
||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/jcasbin/jdbc-adapter</url> | ||
<connection>[email protected]:jcasbin/jcasbin-mongo-adapter.git</connection> | ||
<developerConnection>https://github.com/hsluoyz</developerConnection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<name>Yang Luo</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/hsluoyz</url> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
</properties> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://central.sonatype.com</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<plugins> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
<!-- <artifactId>maven-gpg-plugin</artifactId>--> | ||
<!-- <version>1.5</version>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <id>sign-artifacts</id>--> | ||
<!-- <phase>verify</phase>--> | ||
<!-- <goals>--> | ||
<!-- <goal>sign</goal>--> | ||
<!-- </goals>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- <configuration>--> | ||
<!-- <!– Prevent gpg from using pinentry programs –>--> | ||
<!-- <gpgArguments>--> | ||
<!-- <arg>--pinentry-mode</arg>--> | ||
<!-- <arg>loopback</arg>--> | ||
<!-- </gpgArguments>--> | ||
<!-- </configuration>--> | ||
<!-- </plugin>--> | ||
<plugin> | ||
<groupId>org.eluder.coveralls</groupId> | ||
<artifactId>coveralls-maven-plugin</artifactId> | ||
<version>4.3.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>0.7.6.201602180812</version> | ||
<executions> | ||
<execution> | ||
<id>prepare-agent</id> | ||
<goals> | ||
<goal>prepare-agent</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<!-- Allow attaching Javadoc during releases --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.4</version> | ||
<configuration> | ||
<source>11</source> | ||
<detectJavaApiLink>false</detectJavaApiLink> | ||
<!-- Turn off Java 8 strict Javadoc checking --> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
<tags> | ||
<tag> | ||
<name>notnull</name> | ||
<placement>a</placement> | ||
<head>Not null</head> | ||
</tag> | ||
<tag> | ||
<name>default</name> | ||
<placement>a</placement> | ||
<head>Default:</head> | ||
</tag> | ||
</tags> | ||
</configuration> | ||
<executions> | ||
<!-- Compress Javadoc into JAR and include that JAR when deploying. --> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<!-- Include zipped source code in releases --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<!-- Automatically close and deploy from OSSRH --> | ||
<groupId>org.sonatype.central</groupId> | ||
<artifactId>central-publishing-maven-plugin</artifactId> | ||
<version>0.5.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<publishingServerId>ossrh</publishingServerId> | ||
<!-- Release versions will be synced to Maven Central automatically. --> | ||
<autoPublish>true</autoPublish> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
<version>2.7</version> | ||
<configuration> | ||
<formats> | ||
<format>html</format> | ||
<format>xml</format> | ||
</formats> | ||
<check /> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
|