TD-222: Update for valitydev/thrift compiler @ 0.14.2.3 (#18)

* With valitydev/rebar3_thrift_compiler @ 0.4
* Reuse common Erlang / Java workflows
This commit is contained in:
Andrew Mayorov 2022-07-12 15:52:42 +03:00 committed by GitHub
parent 633ba73e37
commit de15d375ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 52 additions and 99 deletions

View File

@ -1,29 +0,0 @@
name: Build Artifact
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Install thrift
uses: valitydev/action-setup-thrift@v0.0.5
- name: Checkout Repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Maven
uses: actions/setup-java@v2
with:
java-version: '15'
distribution: 'adopt'
- name: Retrieve commit info
run: |
echo "::set-output name=COMMIT_NUMBER::$(git rev-list HEAD --count)"
echo "::set-output name=SHA_7::${GITHUB_SHA::7}"
id: commit_info
- name: Build package
run: mvn --batch-mode -Dcommit.number=${{ steps.commit_info.outputs.COMMIT_NUMBER }} -Drevision="1.${{ steps.commit_info.outputs.COMMIT_NUMBER }}-${{ steps.commit_info.outputs.SHA_7 }}" clean compile -f pom.xml

View File

@ -1,31 +0,0 @@
name: Deploy Artifact
on:
push:
branches:
- 'master'
- 'main'
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Install thrift
uses: valitydev/action-setup-thrift@v0.0.5
- name: Checkout Repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Retrieve commit info
run: |
echo "::set-output name=COMMIT_NUMBER::$(git rev-list HEAD --count)"
echo "::set-output name=SHA_7::${GITHUB_SHA::7}"
id: commit_info
- name: Deploy package
uses: valitydev/action-deploy-jdk-package@v1.0.13
with:
server-username: ${{ secrets.OSSRH_USERNAME }}
server-password: ${{ secrets.OSSRH_TOKEN }}
deploy-secret-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
deploy-secret-key-password: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
maven-args: '-Dcommit.number=${{ steps.commit_info.outputs.COMMIT_NUMBER }} -Drevision="1.${{ steps.commit_info.outputs.COMMIT_NUMBER }}-${{ steps.commit_info.outputs.SHA_7 }}"'

View File

@ -1,34 +1,21 @@
name: Erlang name: Erlang CI Checks
on: on:
pull_request:
branches: ['*']
push: push:
branches: [master] branches:
- 'master'
- 'epic/**'
pull_request:
branches: ['**']
jobs: jobs:
build: run:
name: Build and verify name: Run checks
runs-on: ubuntu-latest uses: valitydev/erlang-workflows/.github/workflows/erlang-simple-build.yml@v1
steps: with:
otp-version: 24
- uses: actions/checkout@v2 rebar-version: 3.18
thrift-version: 0.14.2.3
- uses: valitydev/action-setup-thrift@v0.0.5 use-thrift: true
run-eunit: false
- uses: erlef/setup-beam@v1.10 run-common-test: false
id: beam
with:
otp-version: '24'
rebar3-version: '3.18'
- name: Restore PLT cache
uses: actions/cache@v2
id: plt-cache
with:
key: |
${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-plt
path: |
_build/default/rebar3_*_plt
- run: rebar3 compile
- run: rebar3 xref
- run: rebar3 dialyzer

17
.github/workflows/java-deploy.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Java deploy
on:
push:
branches:
- "master"
- "main"
jobs:
deploy:
uses: valitydev/java-workflow/.github/workflows/maven-thrift-deploy.yml@v1
secrets:
server-username: ${{ secrets.OSSRH_USERNAME }}
server-password: ${{ secrets.OSSRH_TOKEN }}
deploy-secret-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
deploy-secret-key-password: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
mm-webhook-url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}

10
.github/workflows/java-pr.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: Java build
on:
pull_request:
branches:
- "*"
jobs:
build:
uses: valitydev/java-workflow/.github/workflows/maven-thrift-build.yml@v1

View File

@ -1,5 +1,5 @@
namespace java dev.vality.bouncer.base namespace java dev.vality.bouncer.base
namespace erlang bouncer_base namespace erlang bouncer.base
typedef i32 Version typedef i32 Version

View File

@ -1,5 +1,5 @@
namespace java dev.vality.bouncer.ctx namespace java dev.vality.bouncer.ctx
namespace erlang bctx namespace erlang bouncer.ctx
enum ContextFragmentType { enum ContextFragmentType {
/** /**

View File

@ -3,7 +3,7 @@
*/ */
namespace java dev.vality.bouncer.context.v1 namespace java dev.vality.bouncer.context.v1
namespace erlang bctx_v1 namespace erlang bouncer.ctx.v1
include "base.thrift" include "base.thrift"

View File

@ -1,5 +1,5 @@
namespace java dev.vality.bouncer.decisions namespace java dev.vality.bouncer.decisions
namespace erlang bdcs namespace erlang bouncer.decision
include "context.thrift" include "context.thrift"
include "restriction.thrift" include "restriction.thrift"

View File

@ -1,5 +1,5 @@
namespace java dev.vality.bouncer.rstn namespace java dev.vality.bouncer.rstn
namespace erlang brstn namespace erlang bouncer.rstn
include "base.thrift" include "base.thrift"

View File

@ -1,6 +1,5 @@
%% Common project erlang options. %% Common project erlang options.
{erl_opts, [ {erl_opts, [
% mandatory % mandatory
debug_info, debug_info,
warnings_as_errors, warnings_as_errors,
@ -49,17 +48,17 @@
{plugins, [ {plugins, [
{rebar3_thrift_compiler, {rebar3_thrift_compiler,
{git, "https://github.com/valitydev/rebar3_thrift_compiler.git", {branch, "master"}}} {git, "https://github.com/valitydev/rebar3_thrift_compiler.git", {tag, "0.4"}}}
]}. ]}.
{provider_hooks, [ {provider_hooks, [
{pre, [ {pre, [
{compile, {thrift, compile}}, {compile, {thrift, compile}},
{clean , {thrift, clean }} {clean, {thrift, clean}}
]} ]}
]}. ]}.
{thrift_compiler_opts, [ {thrift_compiler_opts, [
{in_dir, "proto"}, {in_dir, "proto"},
{gen, "erlang:scoped_typenames,app_prefix=bouncer"} {gen, "erlang:app_namespaces"}
]}. ]}.