-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7b9799
commit eed578e
Showing
16 changed files
with
1,402 additions
and
94 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 |
---|---|---|
@@ -0,0 +1,143 @@ | ||
name: Benchmarks | ||
|
||
on: [workflow_dispatch] | ||
|
||
jobs: | ||
# invoke_jasmine_tests: | ||
# name: Invoke Jasmine performance tests | ||
# runs-on: sh-linux-x86-chipmunk # Specify that it runs on a self-hosted runner | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# - name: libudev-dev and install Ruby | ||
# run: | | ||
# whoami | ||
# sudo yum install -y libudev-devel ruby-devel cargo npm | ||
# sudo yum install rbenv | ||
# rbenv install 3.1.2 -s | ||
# rbenv global 3.1.2 | ||
# sudo chown -R $(whoami) /usr/local | ||
# - name: install ruby:gem::dotenv | ||
# run: sudo gem install dotenv | ||
# - name: install ruby:gem::json | ||
# run: sudo gem install json | ||
# - name: install node | ||
# uses: actions/setup-node@master | ||
# with: | ||
# node-version: "current" | ||
# - name: install rust | ||
# uses: hecrj/setup-rust-action@v1 | ||
# with: | ||
# rust-version: stable | ||
# - name: cargo install wasm-pack | ||
# run: | | ||
# pwd | ||
# whoami | ||
# cargo install wasm-pack --locked | ||
# npm install -y yarn rustup | ||
# export PATH="$HOME/.cargo/bin:$PATH" | ||
# export PATH="$HOME/.cargo/env:$PATH" | ||
# . "$HOME/.cargo/env" | ||
# - name: Run Jasmine performance tests | ||
# run: | | ||
# source ./application/apps/rustcore/ts-bindings/spec/setup_config.sh sample_tag | ||
# pwd | ||
# cargo install nj-cli --locked | ||
# source ~/.bashrc | ||
# rustup -V | ||
# whoami | ||
# nj-cli --version | ||
# printenv | ||
# rake bindings:clean | ||
# rake bindings:test:indexes | ||
# rake bindings:test:search | ||
# rake bindings:test:observe | ||
invoke_jasmine_tests: | ||
name: Invoke Jasmine performance tests | ||
runs-on: self-hosted-runner-ubuntu | ||
steps: | ||
- name: 'Cleanup build folder' | ||
run: | | ||
ls -la ./ | ||
rm -rf ./* || true | ||
rm -rf ./.??* || true | ||
ls -la ./ | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: libudev-dev | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y gconf-service libgbm-dev libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libnss3 lsb-release xdg-utils wget ca-certificates | ||
sudo apt-get install -y libudev-dev cargo npm imagemagick libmagickwand-dev cmake | ||
- name: install node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22.4.0 | ||
- name: Install Ruby and required gems | ||
run: | | ||
whoami | ||
npm install -g corepack | ||
corepack enable | ||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | ||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | ||
apt-get update | ||
sudo apt-get install -y yarn | ||
yarn --version | ||
apt update | ||
apt-get install -y software-properties-common | ||
apt-add-repository -y ppa:rael-gc/rvm | ||
apt-get update | ||
apt-get install -y rvm | ||
echo 'source "/etc/profile.d/rvm.sh"' >> ~/.bashrc | ||
source /etc/profile.d/rvm.sh | ||
which rvm | ||
rvm install ruby-3.1.2 | ||
ruby --version | ||
sudo chown -R $(whoami) /usr/local | ||
rvm use 3.1.2 --default | ||
rvm --version | ||
rvm info | ||
which rvm | ||
ruby --version | ||
- name: cargo install nj-cli | ||
run: | | ||
cargo install nj-cli --locked | ||
cargo install wasm-pack --locked | ||
- name: Run Jasmine performance tests | ||
run: | | ||
npm i -g tslib | ||
export PATH="/usr/share/rvm:$PATH" | ||
which ruby | ||
ruby --version | ||
pwd | ||
gem install dotenv json octokit tmpdir fileutils | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
export PATH="/root/.cargo/bin:$PATH" | ||
. "/root/.cargo/env" | ||
source ~/.bashrc | ||
ruby scripts/tools/run_benchmarks.rb 10 | ||
ls -la /chipmunk/chipmunk_performance_results | ||
env: | ||
REPO_OWNER: 'esrlabs' | ||
REPO_NAME: 'chipmunk' | ||
invoke_package_distribution: | ||
name: Move benchmark data to chipmunk-docs repository | ||
needs: invoke_jasmine_tests | ||
runs-on: self-hosted-runner-ubuntu | ||
steps: | ||
- name: Checkout chipmunk-docs repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: esrlabs/chipmunk-docs | ||
path: './chipmunk-docs' | ||
token: ${{secrets.DOCS_PUSH_TOKEN}} | ||
- name: Push tag | ||
working-directory: ./chipmunk-docs | ||
run: | | ||
ls -la | ||
cp /chipmunk/chipmunk_performance_results/data.json ./jekyll/benchmarks/data/data.json | ||
git config user.name "esrlabs" | ||
git config user.email "esrlabs@gmail.com" | ||
git remote set-url origin "https://esrlabs:${{secrets.DOCS_PUSH_TOKEN}}@github.com/esrlabs/chipmunk-docs" | ||
git add ./jekyll/benchmarks/data/data.json | ||
git commit -m "Updating data.json for latest tag" | ||
git push origin master |
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
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
Oops, something went wrong.