Compare commits

...

24 Commits
v0.2 ... master

Author SHA1 Message Date
37c156b24a Update .gitea/workflows/cmake.yml
All checks were successful
CMake / build (push) Successful in 19s
2024-07-22 18:54:41 +00:00
e850c6c880 Update .gitea/workflows/cmake.yml
All checks were successful
CMake / build (push) Successful in 24s
2024-07-21 23:39:42 +00:00
25dba8029b Update .gitea/workflows/cmake.yml 2024-07-21 00:17:21 +00:00
7a582b216e add build instructions to the readme 2024-02-23 20:31:03 +00:00
fe2e42a3f2 remove exposing echo 2024-02-22 14:56:17 +00:00
ca206f231d attempt to use LOCIP var 2024-02-22 14:49:27 +00:00
2a781498e7 force etc/hosts for local server 2024-02-22 14:14:34 +00:00
d69279aafd change image name to node16-bullseye to better match what it is 2024-02-22 13:57:49 +00:00
8063e2cd65 Update README.md 2024-02-22 13:35:37 +00:00
541f0aff03 Update .gitea/workflows/cmake.yml 2024-02-22 13:29:10 +00:00
3ff06feb2e Update .gitea/workflows/cmake.yml 2024-02-22 13:27:25 +00:00
255b18e2c5 Update .gitea/workflows/cmake.yml 2024-02-20 18:22:25 +00:00
8cbfd64f2d fixed yaml error 2024-02-20 18:21:36 +00:00
1d890a4593 trying again, but with one runner 2024-02-20 18:19:45 +00:00
51e761df38 make sure build still works 2024-02-20 18:06:35 +00:00
4784a9c5c5 one more time with ubuntu-latest 2024-02-20 17:44:35 +00:00
ec66f74d7d modified build steps 2024-02-20 17:31:27 +00:00
24ee2009b0 modified docker image 2024-02-20 17:21:22 +00:00
e1def09764 try a different docker image 2024-02-20 17:15:45 +00:00
6027c4f1ba change workflow runson 2024-02-15 22:13:13 +00:00
36ed1f9ebc drive a runner action 2024-02-15 22:11:33 +00:00
2d2f392c1e drive a runner action 2024-02-15 21:54:52 +00:00
9ede962190 remove circleci workflow; convert github workflow into gitea workflow 2024-02-15 21:52:54 +00:00
1921f3434d remove circleci workflow; convert github workflow into gitea workflow 2024-02-15 21:52:41 +00:00
4 changed files with 30 additions and 15 deletions

View File

@ -1,13 +0,0 @@
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
orbs:
# Declare a dependency on the welcome-orb
welcome: circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workflows:
# Name the workflow "welcome"
welcome:
# Run the welcome/run job in its own container
jobs:
- welcome/run

View File

@ -12,11 +12,20 @@ jobs:
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
runs-on: ubuntu-gitea
steps:
- name: Prep For Local Builds
run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts
- uses: actions/checkout@v2
- name: Install Build Tools
run: |
apt update
apt -y --no-install-recommends install build-essential clang cmake gdb git wget
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands

View File

@ -3,4 +3,4 @@ project(passwdgen)
set(CMAKE_CXX_STANDARD 20)
add_executable(passwdgen passwdgen.cpp)
add_executable(passwdgen passwdgen.cpp)

View File

@ -1,3 +1,22 @@
# passwdgen
### a rudimentary random string password generator
For demo purposes only
## Build
**Bare Bones**
```bash
mkdir build
g++ -o build/passwdgen ./passwdgen.cpp
```
**From CMAKE**
```bash
mkdir build
cd build
cmake ..
make
```
Then, just copy the compiled binary to somewhere on your $PATH