Skip to content

Commit

Permalink
fix chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
tbro committed Oct 31, 2024
1 parent a34bdf2 commit 85cf49b
Showing 1 changed file with 1 addition and 39 deletions.
40 changes: 1 addition & 39 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ jobs:
run: |
git config --global --add safe.directory '*'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
Expand All @@ -179,7 +178,7 @@ jobs:
mv nextest-archive/* .
mkdir -p target/debug
mv test-binaries/* target/debug
chmod -x test-binaries/*
chmod -x target/debug/*
- name: debug
run: |
Expand All @@ -199,7 +198,6 @@ jobs:
- name: debug
run: echo $PATH


- name: Test Integration
env:
NEXTEST_PROFILE: integration
Expand All @@ -209,39 +207,3 @@ jobs:

- name: Process Compose Down
run: process-compose down

demo-native:
needs: build-test-bins
runs-on: ubuntu-latest
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Install Nix
uses: cachix/install-nix-action@V27

- name: Install process-compose
run: |
nix profile install nixpkgs#process-compose
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Download archive
uses: actions/download-artifact@v4

- name: Move files
run: |
mv nextest-archive/* .
mkdir -p target/debug
mv test-binaries/* target/debug
chmod -x test-binaries/*
- name: Test Demo
run: |
export PATH="$PWD/target/debug:$PATH"
set -o pipefail
scripts/demo-native --tui=false &
timeout -v 600 scripts/smoke-test-demo | sed -e 's/^/smoke-test: /;'

0 comments on commit 85cf49b

Please sign in to comment.