浏览代码

Remove duplicate if clause from spl github workflow (#7622)

duplicate if clause causes the workflow to fail instead of exiting gracefully
Mircea Colonescu 3 月之前
父节点
当前提交
967f43bb43
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      .github/workflows/downstream-project-spl.yml

+ 3 - 3
.github/workflows/downstream-project-spl.yml

@@ -38,7 +38,7 @@ env:
 
 jobs:
   check:
-    if: github.repository == 'anza-xyz/agave'
+    #if: github.repository == 'anza-xyz/agave'
     if: false
     runs-on: ubuntu-latest
     timeout-minutes: 60
@@ -77,7 +77,7 @@ jobs:
           cargo check
 
   test_cli:
-    if: github.repository == 'anza-xyz/agave'
+    #if: github.repository == 'anza-xyz/agave'
     if: false
     runs-on: ubuntu-latest
     timeout-minutes: 60
@@ -108,7 +108,7 @@ jobs:
           cargo test --manifest-path clients/cli/Cargo.toml
 
   cargo-test-sbf:
-    if: github.repository == 'anza-xyz/agave'
+    #if: github.repository == 'anza-xyz/agave'
     if: false
     runs-on: ubuntu-latest
     timeout-minutes: 60