Skip to content

Commit

Permalink
add nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
SwayStar123 committed Aug 15, 2024
1 parent 20752e0 commit 77be90e
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
PATH_TO_SCRIPTS: .github/scripts

jobs:
build-sway-lib:
build-sway-standards:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
run: forc fmt --path examples --check

- name: Build All Examples
run: forc build --path examples --
run: forc build --path examples --release

- name: Run Cargo Tests
run: cargo test
57 changes: 57 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Standards Nightly Tests

on:
schedule:
- cron: '0 0 * * *' # Run every day at midnight UTC
pull_request:

env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io

jobs:
standards-nightly-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt

- name: Init cache
uses: Swatinem/rust-cache@v2

- name: Install a modern linker (mold)
uses: rui314/setup-mold@v1

- name: Force Rust to use mold globally for compilation
run: |
touch ~/.cargo/config.toml
echo "[target.x86_64-unknown-linux-gnu]" > ~/.cargo/config.toml
echo 'linker = "clang"' >> ~/.cargo/config.toml
echo 'rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/mold"]' >> ~/.cargo/config.toml
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: nightly

- name: Check Sway Formatting Standards
run: forc fmt --path standards --check

- name: Build All Standards
run: forc build --error-on-warnings --path standards

- name: Check Sway Formatting Examples
run: forc fmt --path examples --check

- name: Build All Examples
run: forc build --path examples --release

- name: Run Cargo Tests
run: cargo test

0 comments on commit 77be90e

Please sign in to comment.