2023-11-18 20:02:23 +01:00
|
|
|
name: CI/CD Pipeline
|
|
|
|
|
2024-01-17 19:52:54 +01:00
|
|
|
on: push
|
2023-11-18 20:02:23 +01:00
|
|
|
|
|
|
|
env:
|
2024-02-17 12:48:25 +01:00
|
|
|
CARGO_TARGET: x86_64-unknown-linux-musl
|
2023-11-18 20:02:23 +01:00
|
|
|
SSH_HOST: ${{ secrets.SSH_HOST }}
|
|
|
|
SSH_USER: ${{ secrets.SSH_USER }}
|
|
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
|
|
|
|
|
|
jobs:
|
2024-02-17 12:48:25 +01:00
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Run Test DB Script
|
|
|
|
run: ./test_db.sh
|
|
|
|
|
|
|
|
- name: Set up cargo cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-debug-
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cargo build
|
|
|
|
cd frontend && npm install && npm run build
|
|
|
|
- name: Frontend tests
|
2024-03-04 14:55:11 +01:00
|
|
|
run: cd frontend && npx playwright install && npx playwright test --workers 1 --reporter line
|
2024-02-17 12:48:25 +01:00
|
|
|
- name: Backend tests
|
|
|
|
run: cargo test --verbose
|
|
|
|
#- uses: actions/upload-artifact@v3
|
|
|
|
# if: always()
|
|
|
|
# with:
|
|
|
|
# name: playwright-report
|
|
|
|
# path: frontend/playwright-report/
|
|
|
|
# retention-days: 30
|
|
|
|
|
|
|
|
deploy-staging:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
|
|
|
|
needs: [test]
|
|
|
|
if: github.ref == 'refs/heads/staging'
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Run Test DB Script
|
|
|
|
run: ./test_db.sh
|
|
|
|
|
|
|
|
- name: Set up cargo cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-release-
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cargo build --release --target $CARGO_TARGET
|
|
|
|
strip target/$CARGO_TARGET/release/rot
|
|
|
|
cd frontend && npm install && npm run build
|
|
|
|
|
|
|
|
- name: Deploy to Staging
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.ssh
|
|
|
|
ssh-keyscan -H $SSH_HOST >> ~/.ssh/known_hosts
|
|
|
|
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
|
|
|
|
chmod 600 ~/.ssh/id_rsa
|
|
|
|
|
|
|
|
scp target/$CARGO_TARGET/release/rot $SSH_USER@$SSH_HOST:/home/philipp/rowing-staging/rot-updating
|
|
|
|
|
|
|
|
scp staging-diff.sql $SSH_USER@$SSH_HOST:/home/philipp/rowing-staging/
|
|
|
|
scp -r static $SSH_USER@$SSH_HOST:/home/philipp/rowing-staging/
|
|
|
|
scp -r templates $SSH_USER@$SSH_HOST:/home/philipp/rowing-staging/
|
|
|
|
scp -r svelte $SSH_USER@$SSH_HOST:/home/philipp/rowing-staging/
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'sudo systemctl stop rotstaging'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'rm /home/philipp/rowing-staging/db.sqlite && cp /home/philipp/rowing/db.sqlite /home/philipp/rowing-staging/db.sqlite && mkdir -p /home/philipp/rowing-staging/svelte/build && mkdir -p /home/philipp/rowing-staging/data-ergo/thirty && mkdir -p /home/philipp/rowing-staging/data-ergo/dozen && sqlite3 /home/philipp/rowing-staging/db.sqlite < /home/philipp/rowing-staging/staging-diff.sql'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'mv /home/philipp/rowing-staging/rot-updating /home/philipp/rowing-staging/rot'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'sudo systemctl start rotstaging'
|
|
|
|
env:
|
|
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
|
|
SSH_HOST: ${{ secrets.SSH_HOST }}
|
|
|
|
SSH_USER: ${{ secrets.SSH_USER }}
|
|
|
|
|
2023-11-18 20:02:23 +01:00
|
|
|
deploy-main:
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-17 12:48:25 +01:00
|
|
|
container: git.hofer.link/ruderverein-donau-linz/rowing-ci:20240215
|
|
|
|
needs: [test]
|
2023-11-18 20:02:23 +01:00
|
|
|
if: github.ref == 'refs/heads/main'
|
2023-11-18 21:46:00 +01:00
|
|
|
steps:
|
2023-11-18 20:02:23 +01:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-02-17 12:48:25 +01:00
|
|
|
|
|
|
|
- name: Run Test DB Script
|
|
|
|
run: ./test_db.sh
|
|
|
|
|
|
|
|
- name: Set up cargo cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-release-
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cargo build --release --target $CARGO_TARGET
|
|
|
|
strip target/$CARGO_TARGET/release/rot
|
|
|
|
cd frontend && npm install && npm run build
|
2023-11-18 20:02:23 +01:00
|
|
|
|
2024-01-17 23:23:58 +01:00
|
|
|
- name: Deploy to production
|
2023-11-18 20:02:23 +01:00
|
|
|
run: |
|
2024-01-17 23:23:58 +01:00
|
|
|
mkdir -p ~/.ssh
|
2023-11-19 22:01:14 +01:00
|
|
|
ssh-keyscan -H $SSH_HOST >> ~/.ssh/known_hosts
|
|
|
|
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
|
|
|
|
chmod 600 ~/.ssh/id_rsa
|
|
|
|
|
2024-02-17 12:48:25 +01:00
|
|
|
scp target/$CARGO_TARGET/release/rot $SSH_USER@$SSH_HOST:/home/philipp/rowing/rot-updating
|
|
|
|
scp -r static $SSH_USER@$SSH_HOST:/home/philipp/rowing/
|
|
|
|
scp -r templates $SSH_USER@$SSH_HOST:/home/philipp/rowing/
|
|
|
|
scp -r svelte $SSH_USER@$SSH_HOST:/home/philipp/rowing/
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'mkdir -p /home/philipp/rowing/svelte/build && mkdir -p /home/philipp/rowing/data-ergo/thirty && mkdir -p /home/philipp/rowing/data-ergo/dozen'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'sudo systemctl stop rot'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'mv /home/philipp/rowing/rot-updating /home/philipp/rowing/rot'
|
|
|
|
ssh $SSH_USER@$SSH_HOST 'sudo systemctl start rot'
|
2023-11-18 20:02:23 +01:00
|
|
|
env:
|
|
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
|
|
SSH_HOST: ${{ secrets.SSH_HOST }}
|
|
|
|
SSH_USER: ${{ secrets.SSH_USER }}
|