Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
rn5f107s2 committed Aug 25, 2024
1 parent f08e715 commit 716dd77
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/buildLinux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build_all
run-name: Compile Molybdenum and Datagen
on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup clang++ for x64
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Compile Molybdenum
run: make
- name: Run bench
run: ./build/Molybdenum bench
- name: Compile Datagen
run: make datagen
24 changes: 24 additions & 0 deletions .github/workflows/buildWindows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build_all
run-name: Compile Molybdenum and Datagen
on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup clang++ for x64
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Compile Molybdenum
run: make
- name: Run bench
run: ./build/Molybdenum bench
- name: Compile Datagen
run: make datagen

0 comments on commit 716dd77

Please sign in to comment.