Validate on jBallerina nightly #1803
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
name: Validate on jBallerina nightly | |
on: | |
schedule: | |
- cron: '0 */12 * * *' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get run ID | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo 'LATEST_RUN_ID<<EOF' >> $GITHUB_ENV | |
gh run list --workflow main.yml --repo ballerina-platform/ballerina-distribution | grep success | head -n 1 | awk '{print $(NF-2)}' >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
- name: Install LLVM 16 | |
run: | | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - | |
sudo add-apt-repository deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main | |
sudo apt-get update | |
sudo apt-get install -y clang-16 llvm-16 | |
- name: Download jBallerina | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh run download ${{ env.LATEST_RUN_ID }} -D "$HOME" --name "Linux installer ZIP" --repo ballerina-platform/ballerina-distribution | |
- name: Set jBallerina name | |
run: | | |
echo 'JBALLERINA_NAME<<EOF' >> $GITHUB_ENV | |
ls $HOME/ballerina-*.zip | sed 's/.zip//g' >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
- name: Extract jBallerina | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
unzip "${{ env.JBALLERINA_NAME }}.zip" -d "$HOME" | |
chmod +x "${{ env.JBALLERINA_NAME }}/bin/bal" | |
- name: Install jBallerina | |
run: | | |
echo "${{ env.JBALLERINA_NAME }}/bin/" >> $GITHUB_PATH | |
echo "JAVA=${{ env.JBALLERINA_NAME }}/dependencies/jdk-11.0.18+10-jre/bin/java" >> $GITHUB_ENV | |
- name: Test | |
run: | | |
make -j2 test | |
- name: Archive test ouput | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test output | |
path: | | |
test/out |