Skip to content

First Commit

First Commit #9

Workflow file for this run

# Copyright (c) Alexandre Gomes Gaigalas <[email protected]>
# SPDX-License-Identifier: ISC
name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
set -x
wget https://github.com/jart/cosmopolitan/raw/master/build/bootstrap/ape.elf
sudo cp ape.elf /usr/bin/ape
sudo sh -c "echo ':APE:M::MZqFpD::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register"
- run: sh carthage.sh
- uses: actions/upload-artifact@v3
with:
name: target_bin
path: target/bin/**