diff --git a/.github/workflows/RonaLisa.yml b/.github/workflows/RonaLisa.yml new file mode 100644 index 0000000..74f9c89 --- /dev/null +++ b/.github/workflows/RonaLisa.yml @@ -0,0 +1,39 @@ +# Workflow for rustlang +name: RonaLisa (Rustlang) + +# Relevant to events - https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows +on: + pull_request: + branches: [master] + types: [synchronize, opened, reopened, ready_for_review] + paths: + - '**.rs' + +jobs: + build-rustlang: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-18.04] + steps: + - uses: actions/checkout@v2 + - name: building.. + run: make build-rustlang + check-rustlang: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-18.04] + steps: + - uses: actions/checkout@v2 + - name: running tests.. + run: make check-rustlang + bench-rustlang: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-18.04] + steps: + - uses: actions/checkout@v2 + - name: running benchmarks.. + run: make bench-rustlang \ No newline at end of file diff --git a/.github/workflows/cona-isa.yml b/.github/workflows/cona-isa.yml.disabled similarity index 99% rename from .github/workflows/cona-isa.yml rename to .github/workflows/cona-isa.yml.disabled index 8e63b87..2401c7e 100644 --- a/.github/workflows/cona-isa.yml +++ b/.github/workflows/cona-isa.yml.disabled @@ -16,6 +16,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: building.. + if: success() run: make build-rustlang check-rustlang: runs-on: ${{ matrix.os }}