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

CI: Update workflow step names and fix exports #2057

Merged
merged 6 commits into from
Jun 13, 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
2 changes: 1 addition & 1 deletion .github/workflows/tests-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install dependencies
run: sudo ./make.sh ci-setup-deps

- name: Setup target
- name: Install dependencies for target
run: ./make.sh ci-setup-deps-target

- name: Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-ethlibs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Populate environment
run: ./make.sh ci-export-vars

- name: Install dependencies
- name: Setup dependencies
run: sudo ./make.sh ci-setup-deps

- name: Setup target
- name: Setup dependencies for target
run: ./make.sh ci-setup-deps-target

- name: Build binaries
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-jellyfish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
with:
node-version: '18'

- name: Set build version
run: cd defichain && ./make.sh git_version
- name: Populate environment
run: cd defichain && GIT_VERSION=1 ./make.sh ci-export-vars

- name: Build and setup
run: "cd defichain && docker build -t test-build-container
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Populate environment
run: ./make.sh ci-export-vars

- name: Install dependencies
- name: Setup dependencies
run: sudo ./make.sh ci-setup-deps

- name: Setup target
- name: Setup dependencies for target
run: ./make.sh ci-setup-deps-target

# TODO: Switch this to a docker build later and this builds on the native
Expand Down