Skip to content

Commit

Permalink
spotless + gitk installation removed
Browse files Browse the repository at this point in the history
  • Loading branch information
EhsanKhodadad committed Sep 2, 2024
1 parent c996516 commit ca8131e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/actions/setup-patmos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- name: Setup
run: |
# install needed tools
sudo apt install git openjdk-8-jdk gitk cmake make g++ texinfo flex bison \
sudo apt install git openjdk-8-jdk cmake make g++ texinfo flex bison \
subversion libelf-dev graphviz libboost-dev libboost-program-options-dev ruby-full \
liblpsolve55-dev zlib1g-dev gtkwave gtkterm scala autoconf libfl2 expect verilator curl
Expand All @@ -20,15 +20,14 @@ runs:
sudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg
sudo apt-get update
sudo apt-get install sbt
# Clone the Patmos repository
mkdir ~/t-crest
cd ~/t-crest
git clone https://github.com/t-crest/patmos-misc.git misc
./misc/build.sh
./misc/build.sh
# Save location in PATH
export PATH=$PATH:$HOME/t-crest/misc
shell: bash

2 changes: 1 addition & 1 deletion .github/workflows/c-embedded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
flexpret:
uses: ./.github/workflows/c-flexpret-tests.yml

# Run the C Patmos integration tests.
# Run the C Patmos integration tests.
patmos:
uses: ./.github/workflows/c-patmos-tests.yml
11 changes: 11 additions & 0 deletions test/C/src/patmos/HelloPatmos.lf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
target C {
platform: "Patmos",
single-threaded: true,
build-type: Debug
}

main reactor {
reaction(startup) {=
printf("Hello World!\n");
=}
}

0 comments on commit ca8131e

Please sign in to comment.