Skip to content

Commit

Permalink
Create CI build script
Browse files Browse the repository at this point in the history
  • Loading branch information
bullno1 committed Nov 1, 2024
1 parent f27bb4b commit 90987ec
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build
run-name: Build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download cosmopolitan
uses: bjia56/setup-cosmocc@main
with:
version: "3.9.6"
- name: Build
run: ./build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Executables
path: bin/*

0 comments on commit 90987ec

Please sign in to comment.