Skip to content

Commit

Permalink
Build compilers workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leegwater Simões committed Oct 12, 2023
1 parent 080b2bd commit fe54d4a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dusk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Instructions for GitHub to build Dusk's smart contract compilers.

on:
pull_request:
push:
branches:
- master

name: Dusk Contract Compilers

jobs:
build_linux:
name: Build Linux
runs-on: ubuntu-latest
steps:
- run: ./x build --config=config/linux.yml

build_mac:
name: Build Mac
runs-on: macos-latest
steps:
- run: ./x build --config=config/mac.yml

0 comments on commit fe54d4a

Please sign in to comment.