diff --git a/.github/workflows/nightly-rust.yml b/.github/workflows/nightly-rust.yml deleted file mode 100644 index 371667b892b..00000000000 --- a/.github/workflows/nightly-rust.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Test with nightly rustc - -on: - schedule: - # Run at 5:15 am, daily. - - cron: '15 5 * * *' - workflow_dispatch: - -env: - RUST_BACKTRACE: 1 - SHELL: /bin/bash - -jobs: - build-linux-with-rust-nightly: - # This job is only useful when run on upstream servo. - if: github.repository == 'servo/servo' || github.event_name == 'workflow_dispatch' - name: Build (Linux) + rustc nightly - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - name: Update rustc - run: echo nightly > rust-toolchain - - uses: actions/setup-python@v5 - with: - python-version: '3.10' - - name: Bootstrap - run: | - python3 -m pip install --upgrade pip - sudo apt update - python3 ./mach bootstrap - - name: Release build - run: python3 ./mach build --release - - name: Smoketest - run: xvfb-run python3 ./mach smoketest --release - - name: Unit tests - run: python3 ./mach test-unit --release