Skip to content

Commit

Permalink
Setup github workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Aug 28, 2024
1 parent c766506 commit d4f1cbc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Continuous Deployment

on:
push:
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- shell: bash
run: ./build.sh
6 changes: 2 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apt -y install libz3-4

bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

brew install llvm zlib bzip2

source $HOME/.cargo/env

rustup install 1.80.0
Expand Down

0 comments on commit d4f1cbc

Please sign in to comment.