Skip to content

Commit

Permalink
workflows: added a job for testing the primer config
Browse files Browse the repository at this point in the history
  • Loading branch information
pavly-gerges committed Jun 26, 2024
1 parent ce3107f commit f747f07
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,37 @@ jobs:
os: [ 'ubuntu-latest' ]
name: Build Electrostatic

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout Job
uses: actions/checkout@v3

- name: Setup Electrostatic-Sandbox Workstation
run: chmod +rwx ./setup-environment/setup-sandbox.sh && ./setup-environment/setup-sandbox.sh

- name: User's Permissions Granting
run: cd ./electrostatic-sandbox-framework && chmod +rwx ./helper-scripts/project-impl/*.sh

- name: Compiling electrostatic-core Native Binaries
run: cd ./electrostatic-sandbox-framework && ./helper-scripts/ci-cd/compile-electrostatic.sh ""

- name: Testing electrostatic-core Native Binaries
run: cd ./electrostatic-sandbox-framework && ./helper-scripts/ci-cd/test-electrostatic.sh

- name: Compiling electrostatic4j Java Binding API
run: cd ./electrostatic-sandbox-framework && ./helper-scripts/ci-cd/compile-e4j.sh

- name: Testing electrostatic4j Java Binding API
run: cd ./electrostatic-sandbox-framework && ./helper-scripts/ci-cd/test-e4j.sh

build-electrostatic-primer:
# runner images with architectures (variants)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest' ]
name: Build Electrostatic Primer

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout Job
Expand Down

0 comments on commit f747f07

Please sign in to comment.