Skip to content

Commit

Permalink
Update download-neo4j.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
benstear authored Nov 15, 2023
1 parent 6093149 commit 3a65615
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/download-neo4j.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: '3.10'
- run: curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key |sudo gpg --dearmor -o /usr/share/keyrings/neo4j.gpg
- run: echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com stable 4.1" | sudo tee -a /etc/apt/sources.list.d/neo4j.list
- run: sudo apt update
- run: sudo apt install neo4j
- name: Download Neo4j
- run: |
curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key |sudo gpg --dearmor -o /usr/share/keyrings/neo4j.gpg
echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com stable 4.1" | sudo tee -a /etc/apt/sources.list.d/neo4j.list
sudo apt update
sudo apt install neo4j
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-tests.txt
- name: Download OSF files
run: |
echo 'Downloading OSF data...';
osf -p 6jtc9 fetch Datasets/Datasets.zip Datasets.zip;
echo 'Finished Download....';
ls;
echo 'Unzipping...';
unzip Datasets.zip;
echo '--------------------'
ls PetagraphData
osf -p 6jtc9 fetch Datasets/petagraph_v5.zip petagraph_v5.zip;
unzip Datasets.zip; unzip petagraph_v5.zip;
echo 'Finished Downloading and unzipping....';
ls
- name: Test neo4j
run: ls /bin ; /bin/neo4j
run: neo4j start


0 comments on commit 3a65615

Please sign in to comment.