-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update apt, remove "Figure out working directory" step
- Loading branch information
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ jobs: | |
|
||
- name: Install Dependencies | ||
run: | | ||
apt update -y | ||
apt install -y git g++-11 build-essential cmake libboost-all-dev | ||
- name: Checkout Repository | ||
|
@@ -47,13 +48,6 @@ jobs: | |
# cd tests/ | ||
# chmod +x stress_test.sh | ||
# bash stress_test.sh | ||
|
||
- name: Figure out working directory | ||
run: | | ||
pwd | ||
ls -a | ||
tree | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -67,6 +61,9 @@ jobs: | |
git config user.email "[email protected]" | ||
git config user.name "GitHub Action" | ||
pwd | ||
ls -la | ||
# Get the current date | ||
current_date=$(date +'%Y-%m-%d') | ||
|