Skip to content

Commit 142a7e5

Browse files
Merge pull request #23 from Digital-Production-Aachen/update_actions
added build_processor_strategy.proto to actions for compilation
2 parents 7f17f95 + cf8f0bd commit 142a7e5

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

.github/workflows/compile_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ jobs:
5353
protoc -I=. --plugin=protoc-gen-go=/home/runner/go/bin/protoc-gen-go --go_out=generated/go_autogen ovf_lut.proto
5454
protoc -I=. --java_out=generated/java_autogen ovf_lut.proto
5555
protoc -I=. --python_out=generated/python_autogen ovf_lut.proto
56+
protoc -I=. --csharp_out=generated/cs_autogen build_processor_strategy.proto
57+
protoc -I=. --cpp_out=generated/cpp_autogen build_processor_strategy.proto
58+
protoc -I=. --plugin=protoc-gen-go=/home/runner/go/bin/protoc-gen-go --go_out=generated/go_autogen build_processor_strategy.proto
59+
protoc -I=. --java_out=generated/java_autogen build_processor_strategy.proto
60+
protoc -I=. --python_out=generated/python_autogen build_processor_strategy.proto
5661
5762
5863

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
protoc -I=. --plugin=protoc-gen-go=/home/runner/go/bin/protoc-gen-go --go_out=generated/go_autogen ovf_lut.proto
5252
protoc -I=. --java_out=generated/java_autogen ovf_lut.proto
5353
protoc -I=. --python_out=generated/python_autogen ovf_lut.proto
54+
protoc -I=. --csharp_out=generated/cs_autogen build_processor_strategy.proto
55+
protoc -I=. --cpp_out=generated/cpp_autogen build_processor_strategy.proto
56+
protoc -I=. --plugin=protoc-gen-go=/home/runner/go/bin/protoc-gen-go --go_out=generated/go_autogen build_processor_strategy.proto
57+
protoc -I=. --java_out=generated/java_autogen build_processor_strategy.proto
58+
protoc -I=. --python_out=generated/python_autogen build_processor_strategy.proto
5459
- name: Upload
5560
uses: actions/upload-artifact@v2
5661
with:

build_processor_strategy.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MIT License
22
//
3-
// Copyright (c) 2021 Digital-Production-Aachen
3+
// Copyright (c) 2023 Digital-Production-Aachen
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -21,6 +21,7 @@
2121
// SOFTWARE.
2222
syntax = "proto3";
2323
package open_vector_format;
24+
option go_package = "github.com/digital-production-aachen/openvectorformat/proto";
2425
import "open_vector_format.proto";
2526

2627
//BuildProcessorStrategy is a settings collection object for a build processor.

open_vector_format.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MIT License
22
//
3-
// Copyright (c) 2021 Digital-Production-Aachen
3+
// Copyright (c) 2023 Digital-Production-Aachen
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -411,9 +411,9 @@ message VectorBlock {
411411
int32 contour_index = 5;
412412
//2D axis aligned bounding box of the vector block coordinates
413413
AxisAlignedBox2D bounds = 6;
414-
//Optional metadata defining a preferred 32bit RGBA color to render the vector data of this vector block in a viewer.
415-
//int32 is interpreted as byte[4] with byte[0] = red, byte[1] = green, byte[2] = blue, byte[3] = alpha
416-
int32 display_color = 7; }
414+
//Optional metadata defining a preferred 32bit RGBA color to render the vector data of this vector block in a viewer.
415+
//int32 is interpreted as byte[4] with byte[0] = red, byte[1] = green, byte[2] = blue, byte[3] = alpha
416+
int32 display_color = 7; }
417417

418418
// ProcessMetaData for LPBF
419419
message LPBFMetadata {

ovf_lut.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MIT License
22
//
3-
// Copyright (c) 2021 Digital-Production-Aachen
3+
// Copyright (c) 2023 Digital-Production-Aachen
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)