See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
# I used this shell.nix to build LineageOS 13.0 for my maguro (Samsung Galaxy Nexus GSM) phone | |
# The build instructions for normal Linuxes are here: https://wiki.lineageos.org/devices/maguro/build | |
# For NixOS, follow those instructions but skip anything related to installing packages | |
# Detailed instructions: | |
# cd into an empty directory of your choice | |
# copy this file there | |
# in nix-shell: | |
# $ repo init -u https://github.com/LineageOS/android.git -b cm-13.0 | |
# $ repo sync | |
# $ source build/envsetup.sh |
image: "rust:latest" | |
default: | |
before_script: | |
- rustc --version | |
- cargo --version | |
stages: | |
- test |
name: Security audit | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
jobs: | |
security_audit: |
#!/bin/bash | |
function print_help() { | |
echo -e "Usage: masterbuilder [OPTIONS ...]\n" | |
echo "Options:" | |
echo " -t, --target target OS to build --> 'linux', 'windows' or 'darwin'" | |
echo " -a, --arch target architecture --> depends on OS" | |
echo " -r, --release masterplan release version" | |
echo " -gv, --gs-version go-sdl2 version to use" | |
echo " -gl, --gs-libs unpacked go-sdl2 library path" |