Skip to content

Commit

Permalink
ci: initial ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Aug 12, 2024
1 parent 3b81b69 commit 4bd6626
Showing 1 changed file with 138 additions and 0 deletions.
138 changes: 138 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
name: ✨ Build & Release AOS

on:
pull_request:
branches:
- main
push:
branches:
- main

# Perform a release using a workflow dispatch
workflow_dispatch:
inputs:
sqlite:
description: 'Build a aos-sqlite module?'
required: true
type: boolean
llama:
description: 'Build a aos-llama module?'
required: true
type: boolean

defaults:
run:
shell: bash

jobs:
test-console:
if: github.event_name != 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4

- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 22

- name: 📥 Download deps
run: |
yarn
- name: ⚡ Run Tests
run: |
# yarn test
echo "::warning::TODO: Fix aos Console tests. Skipping for now..."
env:
CI: true

test-process:
if: github.event_name != 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4

- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 22

- name: 🤖 Setup ao dev-cli
run: |
curl -fsSL https://install_ao.g8way.io | bash
export PATH="$AO_INSTALL:-$HOME/.ao/bin:$PATH"
which ao
- name: 📥 Download deps
working-directory: process
run: |
yarn
- name: 🏗 Build Module
working-directory: process
run: |
ao build
- name: ⚡ Run Tests
working-directory: process
run: |
yarn test
env:
CI: true

release:
# Releases are performed via a workflow dispatch
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
concurrency:
group: release
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main

- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: "https://registry.npmjs.org"

- name: 🤖 Setup ao dev-cli
run: |
curl -fsSL https://install_ao.g8way.io | bash
export PATH="$AO_INSTALL:-$HOME/.ao/bin:$PATH"
which ao
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 🤓 Set Git User
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: 📥 Download deps
run: |
yarn
- name: Placeholder
run: |
echo "::warning::TODO: Implement Release"
# TODO: update manifests with new version and txids

# - name: ⬆️ Push
# run: |
# git push
# git push --tags

0 comments on commit 4bd6626

Please sign in to comment.