summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-02-11 16:45:34 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2025-04-18 21:52:58 +0900
commitfa9713d59c8f492321c620045e83833859674ebe (patch)
tree3f886c0350f3735239541b5ef4812d221dd23235
parent1ac465f8582841e70051b991cdf4719f9e6598f4 (diff)
Drop cargo build jobs
It doesn't seem important to keep `cargo build`-only jobs. The zjit-test task should be covering most of what we wanted in the job now.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13131
-rw-r--r--.github/workflows/zjit-macos.yml22
-rw-r--r--.github/workflows/zjit-ubuntu.yml21
2 files changed, 0 insertions, 43 deletions
diff --git a/.github/workflows/zjit-macos.yml b/.github/workflows/zjit-macos.yml
index ddf8a991d0..9da805e409 100644
--- a/.github/workflows/zjit-macos.yml
+++ b/.github/workflows/zjit-macos.yml
@@ -21,28 +21,6 @@ permissions:
contents: read
jobs:
- cargo:
- name: cargo test
-
- runs-on: macos-14
-
- if: >-
- ${{!(false
- || contains(github.event.head_commit.message, '[DOC]')
- || contains(github.event.head_commit.message, 'Document')
- || contains(github.event.pull_request.title, '[DOC]')
- || contains(github.event.pull_request.title, 'Document')
- || contains(github.event.pull_request.labels.*.name, 'Documentation')
- || (github.event_name == 'push' && github.event.pull_request.user.login == 'dependabot[bot]')
- )}}
-
- steps:
- - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
-
- # Check that we can build in release mode too
- - run: cargo build --release
- working-directory: zjit
-
make:
strategy:
fail-fast: false
diff --git a/.github/workflows/zjit-ubuntu.yml b/.github/workflows/zjit-ubuntu.yml
index fb22b29e97..20acd20451 100644
--- a/.github/workflows/zjit-ubuntu.yml
+++ b/.github/workflows/zjit-ubuntu.yml
@@ -21,27 +21,6 @@ permissions:
contents: read
jobs:
- cargo:
- name: cargo test
-
- # GitHub Action's image seems to already contain a Rust 1.58.0.
- runs-on: ubuntu-22.04
-
- if: >-
- ${{!(false
- || contains(github.event.head_commit.message, '[DOC]')
- || contains(github.event.pull_request.title, '[DOC]')
- || contains(github.event.pull_request.labels.*.name, 'Documentation')
- || (github.event_name == 'push' && github.event.pull_request.user.login == 'dependabot[bot]')
- )}}
-
- steps:
- - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
-
- # Check that we can build in release mode too
- - run: cargo build --release
- working-directory: zjit
-
make:
strategy:
fail-fast: false