Skip to content

Commit

Permalink
Bump fuel-core to v0.8, and sub-deps. (FuelLabs#1683)
Browse files Browse the repository at this point in the history
* Bump fuel-core to v0.8, and sub-deps.

* Fixes for new version.

* Fix u64 ops test.

* Fix u128 test.

* fix contract ids in test scripts

Co-authored-by: Mohammad Fawaz <[email protected]>
  • Loading branch information
adlerjohn and mohammadfawaz authored May 26, 2022
1 parent a3b9cee commit 609bcb4
Show file tree
Hide file tree
Showing 22 changed files with 274 additions and 141 deletions.
47 changes: 22 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Run mdbook build
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.15'
mdbook-version: "0.4.15"
- name: Emit logs to tmp.txt, fail if build logs contain 'ERROR'
run: |
mdbook build docs &> tmp.txt
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
command: build
args: --locked --workspace --all-features --all-targets
env:
RUSTFLAGS: '-D warnings'
RUSTFLAGS: "-D warnings"

cargo-clippy:
needs: cancel-previous-runs
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-toml-lint
version: '0.1'
version: "0.1"
- name: Run Cargo.toml linter
run: git ls-files | grep Cargo.toml$ | xargs --verbose -n 1 cargo-toml-lint

Expand All @@ -279,7 +279,7 @@ jobs:
runs-on: ubuntu-latest
services:
fuel-core:
image: ghcr.io/fuellabs/fuel-core:v0.6.3
image: ghcr.io/fuellabs/fuel-core:v0.8.0
ports:
- 4000:4000
steps:
Expand All @@ -301,7 +301,7 @@ jobs:
runs-on: ubuntu-latest
services:
fuel-core:
image: ghcr.io/fuellabs/fuel-core:v0.6.3
image: ghcr.io/fuellabs/fuel-core:v0.8.0
ports:
- 4000:4000
steps:
Expand Down Expand Up @@ -425,10 +425,10 @@ jobs:
with:
status: ${{ job.status }}
token: ${{ secrets.GITHUB_TOKEN }}
notification_title: '{workflow} has {status_message}'
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>'
footer: ''
notify_when: 'failure'
notification_title: "{workflow} has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>"
footer: ""
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NOTIFY_BUILD }}

Expand Down Expand Up @@ -488,10 +488,10 @@ jobs:
with:
status: ${{ job.status }}
token: ${{ secrets.GITHUB_TOKEN }}
notification_title: '{workflow} has {status_message}'
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>'
footer: ''
notify_when: 'failure'
notification_title: "{workflow} has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>"
footer: ""
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NOTIFY_BUILD }}

Expand Down Expand Up @@ -563,10 +563,10 @@ jobs:
with:
status: ${{ job.status }}
token: ${{ secrets.GITHUB_TOKEN }}
notification_title: '{workflow} has {status_message}'
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>'
footer: ''
notify_when: 'failure'
notification_title: "{workflow} has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>"
footer: ""
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NOTIFY_BUILD }}

Expand Down Expand Up @@ -618,21 +618,18 @@ jobs:
with:
status: ${{ job.status }}
token: ${{ secrets.GITHUB_TOKEN }}
notification_title: '{workflow} has {status_message}'
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>'
footer: ''
notify_when: 'failure'
notification_title: "{workflow} has {status_message}"
message_format: "{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}> : <{run_url}|View Run Results>"
footer: ""
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NOTIFY_BUILD }}

install-and-upload-forc-binaries:
name: Install and upload forc binaries to release
runs-on: ${{ matrix.job.os }}
if: github.event_name == 'release' && github.event.action == 'published'
needs: [
cancel-previous-runs,
publish,
]
needs: [cancel-previous-runs, publish]
strategy:
matrix:
job:
Expand Down
Loading

0 comments on commit 609bcb4

Please sign in to comment.