Skip to content

Commit

Permalink
Remove unnecessary chmod operations in CI (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucperkins authored Apr 17, 2024
1 parent 428c98a commit 5522d0f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
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

0 comments on commit 5522d0f

Please sign in to comment.