Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add argo wokflows #1380

Merged
merged 2 commits into from
Apr 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions argo-workflows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
package:
name: argo-workflows
version: 3.4.7
epoch: 0
description: Workflow engine for Kubernetes.
copyright:
- license: Apache-2.0

environment:
contents:
packages:
- ca-certificates-bundle
- busybox
- go
- python3
- openssl
- nodejs-16
- yarn

pipeline:
- uses: git-checkout
with:
repository: https://github.com/argoproj/argo-workflows
tag: v${{package.version}}
expected-commit: f2292647c5a6be2f888447a1fef71445cc05b8fd

- runs: |
# NODE_OPTIONS has to been set
sed -i 's/NODE_OPTIONS='\''[^'\'']*'\''/NODE_OPTIONS='\''--openssl-legacy-provider'\''/g' ui/package.json
cp ui/package.json .
cp ui/yarn.lock .

yarn install
yarn cache clean

# Our global LDFLAGS conflict with a Makefile parameter
unset LDFLAGS
make dist/workflow-controller
make dist/argo

mkdir -p ${{targets.destdir}}/usr/bin
mv dist/argo* ${{targets.destdir}}/usr/bin/
mv dist/workflow-controller* ${{targets.destdir}}/usr/bin/

- uses: strip

update:
enabled: true
github:
identifier: argoproj/argo-workflows
strip-prefix: v
1 change: 1 addition & 0 deletions packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -541,3 +541,4 @@ iniparser
ndctl
thin-provisioning-tools
libpfm
argo-workflows