Skip to content

Commit

Permalink
chore: ci, patch up workflow sequencing
Browse files Browse the repository at this point in the history
  • Loading branch information
digikata committed Nov 10, 2023
1 parent 10bda30 commit f5b9078
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
35 changes: 29 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
echo "RUST_BIN_DIR = ${{ env.RUST_BIN_DIR }} "
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: install rust target
- name: install rust target
run: rustup target add ${{ matrix.rust-target }}
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
echo "RUST_BIN_DIR = ${{ env.RUST_BIN_DIR }} "
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: install Rust target
- name: install Rust target
run: rustup target add ${{ matrix.rust-target }}
- name: Install zig
run: ./actions/zig-install.sh ${{ matrix.os }}
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: install wasm target
- name: install wasm target
run: rustup target add wasm32-unknown-unknown
- name: Build Regex SmartModule
run: make -C smartmodule/regex-filter
Expand All @@ -476,7 +476,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: install wasm target
- name: install wasm target
run: rustup target add wasm32-unknown-unknown
- name: Build WASM for ${{ matrix.wasm-crate }}
run: cargo check --manifest-path ./crates/${{matrix.wasm-crate}}/Cargo.toml --target wasm32-unknown-unknown
Expand Down Expand Up @@ -771,7 +771,17 @@ jobs:
- name: Set up Fluvio binaries
run: |
chmod +x ~/bin/fluvio ~/bin/fluvio-test
echo "~/bin" >> $GITHUB_PATH
Run details

Triggered via pull request November 10, 2023 08:21
@digikatadigikata
opened
#3682
ac/fix-ci-master
Status Failure
Total duration 13m 5s
Artifacts 22

echo "DEFAULT_SPU=${{ matrix.spu }}" | tee -a $GITHUB_ENV
echo "REPL=${{ matrix.spu }}" | tee -a $GITHUB_ENV
- name: Print version
Expand Down Expand Up @@ -1391,7 +1401,20 @@ jobs:
done:
name: Done
if: github.event_name == 'merge_group'
needs: [publish_github_binaries, publish_github_helm_pkg]
needs:
- check
- check_wasm
- check_windows
- check_integration
- build_image
- local_cluster_test
- k8_cluster_test
- k8_upgrade_test
- cli_smoke
- build_binaries
- partition_test
- publish_github_binaries
- publish_github_helm_pkg
runs-on: ubuntu-latest
steps:
- name: Done
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Publish

on:
push:
workflow_run:
workflows: [CI]
branches: [master]
types: [completed]
workflow_dispatch:
inputs:
installer_version:
Expand Down

0 comments on commit f5b9078

Please sign in to comment.