Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI check for forc compiler warnings #19

Merged
merged 31 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
29d289d
Use current nightly forc
sdankel Aug 5, 2024
91b3644
Merge branch 'sophie/latest-forc' into K1-R1/updates
K1-R1 Aug 6, 2024
b6db5d1
chore: update contract to forc 0.63.1
K1-R1 Aug 21, 2024
ac1f0fd
chore: update scripts
K1-R1 Aug 21, 2024
938b2e8
chore: updated tests and removed copied test
K1-R1 Aug 21, 2024
b1a2264
docs: updated badges and replace version message with badge
K1-R1 Aug 21, 2024
06cb885
chore: changelog
K1-R1 Aug 21, 2024
3ef6f41
Update ci.yml
K1-R1 Aug 21, 2024
6163f8e
Update CHANGELOG.md
K1-R1 Aug 21, 2024
5df64be
chore: update CI rust ver
K1-R1 Aug 30, 2024
bde6d1a
feat: update to latest deps, pin owner slot
K1-R1 Aug 30, 2024
d0d55a3
docs: updated forc version
K1-R1 Aug 30, 2024
d617a70
chore: updated forc ver in tests
K1-R1 Aug 30, 2024
18da14d
Resolve failed to run custom build command for fuel-core-upgradable-e…
bitzoic Aug 30, 2024
edbb615
Use master branch of Sway-Libs
bitzoic Aug 30, 2024
be8f77d
Update to Sway-Libs v0.24.0
bitzoic Sep 2, 2024
a54724b
Udpate Forc.lock
bitzoic Sep 2, 2024
78626cb
chore: updated script dependencies
K1-R1 Sep 5, 2024
01ba4a2
chore: updated test dependencies
K1-R1 Sep 5, 2024
d508b8b
chore: fix clippy lint
K1-R1 Sep 5, 2024
5c65a67
chore: fix spelling
K1-R1 Sep 5, 2024
39b0746
chore: use default node and chain config
K1-R1 Sep 5, 2024
b2805f9
chore: use latest nightly chain
K1-R1 Sep 5, 2024
1a34ae5
fix ci
K1-R1 Sep 5, 2024
fb558e0
Merge pull request #25 from FuelLabs/K1-R1-CI-debug
K1-R1 Sep 8, 2024
29214f1
chore: update CI rust version
K1-R1 Sep 8, 2024
4b77760
chore: updated owned proxy forc version
K1-R1 Sep 8, 2024
21d53da
chore: updated owned_proxy scripts fuel-rs version
K1-R1 Sep 8, 2024
515e7a0
chore: updated test harness forc and fuels-rs versions
K1-R1 Sep 8, 2024
a7fbfb3
Merge branch 'K1-R1/updates' into K1-R1-CI-warnings
K1-R1 Sep 8, 2024
ecd967d
Merge branch 'master' into K1-R1-CI-warnings
bitzoic Sep 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Build Sway
run: |
cd ${{ matrix.project }}
forc build --release --locked
forc build --release --locked --error-on-warnings

test-projects:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Description of the upcoming release here.
- [#8](https://github.com/FuelLabs/sway-standard-implementations/pull/8) Adds SRC-14 owned proxy usage scripts and docs.
- [#10](https://github.com/FuelLabs/sway-standard-implementations/pull/10) Sets owned_proxy sway-libs dependency to version v0.23.0.
- [#17](https://github.com/FuelLabs/sway-standard-implementations/pull/17) Update Owned Proxy to support `forc`'s deploy proxy feature.
- [#19](https://github.com/FuelLabs/sway-standard-implementations/pull/19) Adds CI checks for `forc` compiler warnings.

### Changed

Expand Down
Loading