From 68456fad863611dac753b618131091b1003b9794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Mei=C3=9Fner?= Date: Thu, 24 Aug 2023 23:50:10 +0200 Subject: [PATCH] CI - Disables Downstream Project actions (#32983) Disables Downstream Project CI actions. --- .../downstream-project-spl-nightly.yml | 24 --- .github/workflows/downstream-project-spl.yml | 154 ------------------ 2 files changed, 178 deletions(-) delete mode 100644 .github/workflows/downstream-project-spl-nightly.yml delete mode 100644 .github/workflows/downstream-project-spl.yml diff --git a/.github/workflows/downstream-project-spl-nightly.yml b/.github/workflows/downstream-project-spl-nightly.yml deleted file mode 100644 index ea0911e0e2..0000000000 --- a/.github/workflows/downstream-project-spl-nightly.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Downstream Project - SPL (Nightly) - -on: - schedule: - - cron: "0 3 * * *" - -jobs: - main: - strategy: - fail-fast: false - matrix: - branch: - - master - uses: ./.github/workflows/downstream-project-spl.yml - with: - branch: ${{ matrix.branch }} - - error_reporting: - needs: - - main - if: failure() - uses: ./.github/workflows/error-reporting.yml - secrets: - WEBHOOK: ${{ secrets.SLACK_ERROR_REPORTING_WEBHOOK }} diff --git a/.github/workflows/downstream-project-spl.yml b/.github/workflows/downstream-project-spl.yml deleted file mode 100644 index 5b69c5c3f7..0000000000 --- a/.github/workflows/downstream-project-spl.yml +++ /dev/null @@ -1,154 +0,0 @@ -name: Downstream Project - SPL - -on: - push: - branches: - - master - - v[0-9]+.[0-9]+ - pull_request: - branches: - - master - - v[0-9]+.[0-9]+ - paths: - - "**.rs" - - "Cargo.toml" - - "Cargo.lock" - - "cargo-build-bpf" - - "cargo-test-bpf" - - "cargo-build-sbf" - - "cargo-test-sbf" - - "ci/downstream-projects/run-spl.sh" - - ".github/workflows/downstream-project-spl.yml" - workflow_call: - inputs: - branch: - required: false - type: string - default: "master" - -env: - SHELL: /bin/bash - SCCACHE_GHA_ENABLED: "true" - RUSTC_WRAPPER: "sccache" - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - shell: bash - run: | - .github/scripts/purge-ubuntu-runner.sh - - - uses: mozilla-actions/sccache-action@v0.0.3 - - - shell: bash - run: | - source .github/scripts/downstream-project-spl-common.sh - - sudo apt update - sudo apt install libudev-dev binutils-dev libunwind-dev protobuf-compiler -y - - cargo check - - test: - runs-on: ubuntu-latest - strategy: - matrix: - arrays: - [ - { - test_paths: ["token/cli"], - required_programs: - [ - "token/program", - "token/program-2022", - "associated-token-account/program", - ], - }, - { - test_paths: ["single-pool/cli"], - required_programs: - [ - "single-pool/program", - ], - }, - { - test_paths: ["token-upgrade/cli"], - required_programs: - [ - "token-upgrade/program", - ], - }, - ] - steps: - - uses: actions/checkout@v3 - - - shell: bash - run: | - .github/scripts/purge-ubuntu-runner.sh - - - uses: mozilla-actions/sccache-action@v0.0.3 - - - shell: bash - run: | - source .github/scripts/downstream-project-spl-common.sh - - sudo apt update - sudo apt install libudev-dev binutils-dev libunwind-dev protobuf-compiler -y - - programStr="${{ tojson(matrix.arrays.required_programs) }}" - IFS=', ' read -ra programs <<<"${programStr//[\[\]$'\n'$'\r' ]/}" - for program in "${programs[@]}"; do - $CARGO_BUILD_SBF --manifest-path "$program"/Cargo.toml - done - - testPathsStr="${{ tojson(matrix.arrays.test_paths) }}" - IFS=', ' read -ra test_paths <<<"${testPathsStr//[\[\]$'\n'$'\r' ]/}" - for test_path in "${test_paths[@]}"; do - cargo test --manifest-path "$test_path"/Cargo.toml - done - - cargo-test-sbf: - runs-on: ubuntu-latest - strategy: - matrix: - programs: - - [token/program] - - [ - instruction-padding/program, - token/program-2022, - token/program-2022-test, - ] - - [ - associated-token-account/program, - associated-token-account/program-test, - ] - - [token-upgrade/program] - - [feature-proposal/program] - - [governance/addin-mock/program, governance/program] - - [memo/program] - - [name-service/program] - - [stake-pool/program] - - [single-pool/program] - - steps: - - uses: actions/checkout@v3 - - - shell: bash - run: | - .github/scripts/purge-ubuntu-runner.sh - - - uses: mozilla-actions/sccache-action@v0.0.3 - - - shell: bash - run: | - source .github/scripts/downstream-project-spl-common.sh - - programStr="${{ tojson(matrix.programs) }}" - IFS=', ' read -ra programs <<<"${programStr//[\[\]$'\n'$'\r' ]/}" - - for program in "${programs[@]}"; do - $CARGO_TEST_SBF --manifest-path "$program"/Cargo.toml - done