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

Changed array size to be 40 for E0308 #958

Closed
wants to merge 14 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly]
rust: [nightly] # This should be reverted back to [stable, nightly] when 1.74 is made the rustc stable version
env:
CRATE_NAME: gluon
CARGO_INCREMENTAL: 0 # Incremental compilation is slower and bloats the cache
Expand Down
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ branches:

matrix:
include:
- rust: nightly-2020-09-12
- rust: nightly-2023-09-05
# - rust: beta
- rust: stable
# - rust: stable Removed # This should be uncommented when 1.74 is made the rustc stable version
env: ARCH=i686

- rust: stable
- rust: nightly-2023-09-05 # Change back to rust: stable when 1.74 is made the rustc stable version
env:
- DEPLOY=1
- PUBLISH=1
- TARGET=x86_64-unknown-linux-gnu

- rust: nightly-2020-09-12
- rust: nightly-2023-09-05
env: WASM=1

# Only for deployment
Expand Down Expand Up @@ -122,7 +122,7 @@ deploy:
after_deploy:
- CURRENT_TAG=`git describe --exact-match --abbrev=0 --tags || true`
- >
if [[ $CURRENT_TAG != "" ]] && [[ $TRAVIS_RUST_VERSION == "stable" ]] && [[ $PUBLISH == "1" ]]; then
if [[ $CURRENT_TAG != "" ]] && [[ $TRAVIS_RUST_VERSION == "nightly" ]] && [[ $PUBLISH == "1" ]]; then
cargo login $CRATES_IO_TOKEN
./scripts/publish.sh "${CURRENT_TAG}"
fi
Loading