Skip to content

Commit

Permalink
Fixes on CI workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Dec 23, 2023
1 parent a0d3462 commit 21b4d1f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/puppet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ jobs:
uses: actions/checkout@v1

- name: Install OpenJDK
run: sudo apt install openjdk
run: |
sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt install openjdk
- name: Install Ballerina
run: wget https://dist.ballerina.io/downloads/2201.8.4/ballerina-2201.8.4-swan-lake-linux-x64.deb | sudo dpkg --install ballerina-2201.8.4-swan-lake-linux-x64.deb && rm ballerina-2201.8.4-swan-lake-linux-x64.deb

- name: Check Ballerina installation
run: bal -v

- name: Ballerina project build
run: cd puppet && bal build

0 comments on commit 21b4d1f

Please sign in to comment.