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

Remove unnecessary chmod operations in CI #293

Merged
merged 2 commits into from
Apr 17, 2024
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: 0 additions & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@ jobs:
run: |
nix build ".#resonate"
cp ./result/bin/resonate resonate
chmod +x resonate

nix build ".#durable-promise-test-harness"
cp ./result/bin/durable-promise-test-harness durable-promise-test-harness
chmod +x durable-promise-test-harness

- name: Run resonate server
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/dst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ jobs:
fail-on-cache-miss: true
- name: Run dst (seed=${{ needs.seed.outputs.seed }}, scenario=${{ matrix.scenario }}, store=${{ matrix.store }})
run: |
chmod +x resonate
./resonate dst run --seed ${{ needs.seed.outputs.seed }} --scenario ${{ matrix.scenario }} --aio-store ${{ matrix.store }} > logs.txt 2>&1
- name: Create issue if dst failed
env:
Expand Down Expand Up @@ -158,7 +157,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.github_token }}
if: ${{ failure() }}
run: |
chmod +x resonate
./resonate dst issue \
--seed ${{ needs.seed.outputs.seed }} \
--scenario ${{ matrix.scenario }} \
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release_publish_github_artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ jobs:
# Build resonate binary
nix build ".#resonate"

# Copy and change permissions
# Copy into root
cp ./result/bin/resonate resonate
chmod +x resonate

# Compress binary
tar -czvf "${TARBALL}" resonate
Expand Down