Skip to content

Commit

Permalink
GitHub workflow for building and launching C++ and Java
Browse files Browse the repository at this point in the history
  • Loading branch information
vikman90 committed Feb 22, 2024
1 parent 9758ba7 commit 0295dff
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-cpp:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: make -C C++
- name: Archive
run: tar -zcvf build-cpp.tar.gz C++/queens
- uses: actions/[email protected]
with:
name: build-cpp
path: build-cpp.tar.gz

build-java:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: make -C Java
- uses: actions/[email protected]
with:
name: build-java
path: Java/queens.jar

launch-cpp:

runs-on: ubuntu-latest
needs: build-cpp

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
name: build-cpp
- name: Unarchive
run: tar -zxvf build-cpp/build-cpp.tar.gz
- name: Launch
run: ./launch.py 100 1000 5 3 C++/queens

launch-java:

runs-on: ubuntu-latest
needs: build-java

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
name: build-java
- name: Launch Java
run: ./launch.py 100 1000 5 3 java -jar build-java/queens.jar

0 comments on commit 0295dff

Please sign in to comment.