Skip to content
Snippets Groups Projects
  • Alexander Theißen's avatar
    Update to Rust stable 1.84.1 (#7625) · e2d3da61
    Alexander Theißen authored
    
    Ref https://github.com/paritytech/ci_cd/issues/1107
    
    We mainly need that so that we can finally compile the `pallet_revive`
    fixtures on stable. I did my best to keep the commits focused on one
    thing to make review easier.
    
    All the changes are needed because rustc introduced more warnings or is
    more strict about existing ones. Most of the stuff could just be fixed
    and the commits should be pretty self explanatory. However, there are a
    few this that are notable:
    
    ## `non_local_definitions `
    
    A lot of runtimes to write `impl` blocks inside functions. This makes
    sense to reduce the amount of conditional compilation. I guess I could
    have moved them into a module instead. But I think allowing it here
    makes sense to avoid the code churn.
    
    ## `unexpected_cfgs`
    
    The FRAME macros emit code that references various features like `std`,
    `runtime-benchmarks` or `try-runtime`. If a create that uses those
    macros does not have those features we get this warning. Those were
    mostly when defining a `mock` runtime. I opted for silencing the warning
    in this case rather than adding not needed features.
    
    For the benchmarking ui tests I opted for adding the `runtime-benchmark`
    feature to the `Cargo.toml`.
    
    ## Failing UI test
    
    I am bumping the `trybuild` version and regenerating the ui tests. The
    old version seems to be incompatible. This requires us to pass
    `deny_warnings` in `CARGO_ENCODED_RUSTFLAGS` as `RUSTFLAGS` is ignored
    in the new version.
    
    ## Removing toolchain file from the pallet revive fixtures
    
    This is no longer needed since the latest stable will compile them fine
    using the `RUSTC_BOOTSTRAP=1`.
    
    ---------
    
    Co-authored-by: default avatarcmd[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Unverified
    e2d3da61
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
This GitLab CI configuration is invalid: Project `parity/infrastructure/ci_cd/shared` not found or access denied! Make sure any includes in the pipeline configuration are correctly defined. Learn more
.gitlab-ci.yml 8.72 KiB
# polkadot-sdk | CI definitions (via GitLab CI)
#
# FYI: Pipelines can be triggered manually through the web UI (if you have enough permissions)
#
# Currently, entire CI instructions are split into different subfiles. Each CI stage has a corresponding
# file which can be found here: .gitlab/pipeline/<stage_name>.yml

stages:
  - check
  - test
  - build
  - publish
  - short-benchmarks
  - zombienet
  - deploy
  - notify

workflow:
  rules:
    - if: $CI_COMMIT_TAG
    - if: $CI_COMMIT_BRANCH

variables:
  # CI_IMAGE: !reference [ .ci-unified, variables, CI_IMAGE ]
  CI_IMAGE: "docker.io/paritytech/ci-unified:bullseye-1.84.1-2025-01-28-v202502131220"
  # BUILDAH_IMAGE is defined in group variables
  BUILDAH_COMMAND: "buildah --storage-driver overlay2"
  RELENG_SCRIPTS_BRANCH: "master"
  RUSTY_CACHIER_SINGLE_BRANCH: master
  RUSTY_CACHIER_DONT_OPERATE_ON_MAIN_BRANCH: "true"
  RUSTY_CACHIER_COMPRESSION_METHOD: zstd
  NEXTEST_FAILURE_OUTPUT: immediate-final
  NEXTEST_SUCCESS_OUTPUT: final
  DOCKER_IMAGES_VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}"

default:
  retry:
    max: 2
    when:
      - runner_system_failure
      - unknown_failure
      - api_failure
  cache: {}
  interruptible: true

.collect-artifacts:
  artifacts:
    name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}"
    when: on_success
    expire_in: 1 days
    paths:
      - artifacts/

.collect-artifacts-short:
  artifacts:
    name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}"
    when: on_failure
    expire_in: 3 hours
    paths:
      - artifacts/

.prepare-env:
  before_script:
    # $WASM_BUILD_WORKSPACE_HINT enables wasm-builder to find the Cargo.lock from within generated
    # packages
    - export WASM_BUILD_WORKSPACE_HINT="$PWD"
    # ensure that RUSTFLAGS are set correctly
    - echo $RUSTFLAGS

.common-before-script: