Skip to content

Commit c73e3af

Browse files
committed
init: Move to a public repo (1c9058b)
0 parents  commit c73e3af

File tree

193 files changed

+26870
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+26870
-0
lines changed

.github/workflows/lint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: lint
2+
run-name: ${{ github.ref_name }} lint
3+
on: [push]
4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6+
cancel-in-progress: true
7+
jobs:
8+
Test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout the repo
12+
uses: actions/checkout@v4
13+
# We change the depth to find changed files.
14+
with:
15+
fetch-depth: 2
16+
- run: bash --version
17+
- name: Run lint
18+
run: ./src/internal/ci ci_lint

.github/workflows/test-bash3.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: test (bash 3)
2+
run-name: ${{ github.ref_name }} on bash 3
3+
on: [push]
4+
env:
5+
bversion: 3
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
Test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout the repo
14+
uses: actions/checkout@v4
15+
# We change the depth to find changed files.
16+
with:
17+
fetch-depth: 2
18+
- run: bash --version
19+
- name: Install bash
20+
run: ./src/internal/ci ci_install_bash $bversion
21+
- name: Print configuration
22+
run: ./src/internal/ci ci_config $bversion
23+
- name: Run tests
24+
run: ./src/internal/ci ci_test $bversion

.github/workflows/test-bash4.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: test (bash 4)
2+
run-name: ${{ github.ref_name }} on bash 4
3+
on: [push]
4+
env:
5+
bversion: 4
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
Test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout the repo
14+
uses: actions/checkout@v4
15+
# We change the depth to find changed files.
16+
with:
17+
fetch-depth: 2
18+
- run: bash --version
19+
- name: Install bash
20+
run: ./src/internal/ci ci_install_bash $bversion
21+
- name: Print configuration
22+
run: ./src/internal/ci ci_config $bversion
23+
- name: Run tests
24+
run: ./src/internal/ci ci_test $bversion

.github/workflows/test-bash5.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: test (bash 5)
2+
run-name: ${{ github.ref_name }} on bash 5
3+
on: [push]
4+
env:
5+
bversion: 5
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
Test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout the repo
14+
uses: actions/checkout@v4
15+
# We change the depth to find changed files.
16+
with:
17+
fetch-depth: 2
18+
- run: bash --version
19+
- name: Print configuration
20+
run: ./src/internal/ci ci_config $bversion
21+
- name: Run tests
22+
run: ./src/internal/ci ci_test $bversion

.github/workflows/test-mac.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: test (macOS)
2+
run-name: ${{ github.ref_name }} on macOS
3+
on: [push]
4+
env:
5+
bversion: 3
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
Test:
11+
runs-on: macos-latest
12+
steps:
13+
- name: Checkout the repo
14+
uses: actions/checkout@v4
15+
# We change the depth to find changed files.
16+
with:
17+
fetch-depth: 2
18+
- run: bash --version
19+
- name: Print configuration
20+
run: ./src/internal/ci ci_config $bversion
21+
- name: Run tests
22+
run: ./src/internal/ci ci_test $bversion

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
*~
3+
.objects/

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2023-present, Milos Gligoric <milos.gligoric@gmail.com>
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the copyright holder nor the names of its
16+
contributors may be used to endorse or promote products derived from
17+
this software without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)