Skip to content

Commit

Permalink
try to use the libra binary published for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
0o-de-lally committed Aug 14, 2024
1 parent 1022feb commit 9c17b64
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: rust ci

on:
push:
# tags:
# - "[0-9]+.[0-9]+.[0-9]+"
# - "[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
tags: # only on releases, not RC, since we've tested already
- "[0-9]+.[0-9]+.[0-9]+"
branches: ["**"] # glob pattern to allow slash /
pull_request:
types:
Expand All @@ -17,7 +16,7 @@ on:
- cron: "30 00 * * *"

env:
DIEM_FORGE_NODE_BIN_PATH: ${{github.workspace}}/diem-node
# DIEM_FORGE_NODE_BIN_PATH: ${{github.workspace}}/diem-node
LIBRA_CI: 1
MODE_0L: "TESTNET"

Expand All @@ -38,7 +37,8 @@ jobs:

- name: build framework
working-directory: ./framework
run: cargo r release
# uses the libra binary to compile faster, without needing to compile the Move compiler
run: ${{github.workspace}}/libra move framework release

- uses: actions/[email protected]
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/cleanliness.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: cleanliness
on:
push:
# tags:
# - "[0-9]+.[0-9]+.[0-9]+"
# - "[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
tags: # only on releases, not RC, since we've tested already
- "[0-9]+.[0-9]+.[0-9]+"
branches: ["**"] # glob pattern to allow slash /
pull_request:
types:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/formal.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: formal verification
on:
push:
# tags:
# - "[0-9]+.[0-9]+.[0-9]+"
# - "[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
tags: # only on releases, not RC, since we've tested already
- "[0-9]+.[0-9]+.[0-9]+"
branches: ["**"] # glob pattern to allow slash /
pull_request:
types:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/move.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: move framework tests

on:
push:
# tags:
# - "[0-9]+.[0-9]+.[0-9]+"
# - "[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
tags: # only on releases, not RC, since we've tested already
- "[0-9]+.[0-9]+.[0-9]+"
branches: ["**"] # glob pattern to allow slash /
pull_request:
types:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: publish cli
on:
push:
tags:
tags: # run this also on release candidates
- "[0-9]+.[0-9]+.[0-9]*"
branches:
- "ci"
Expand Down

0 comments on commit 9c17b64

Please sign in to comment.