Compare commits
No commits in common. "master" and "v0.0.2" have entirely different histories.
48
.github/workflows/docs.yaml
vendored
48
.github/workflows/docs.yaml
vendored
@ -1,48 +0,0 @@
|
|||||||
name: Docs
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "master" ]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup V
|
|
||||||
run: |
|
|
||||||
wget -qO /tmp/v.zip https://github.com/vlang/v/releases/latest/download/v_linux.zip
|
|
||||||
unzip -q /tmp/v.zip -d /tmp
|
|
||||||
echo /tmp/v >> "$GITHUB_PATH"
|
|
||||||
|
|
||||||
- name: Build docs
|
|
||||||
run: |
|
|
||||||
v doc -f html -m .
|
|
||||||
pushd _docs
|
|
||||||
ln -vs embedfs.html index.html
|
|
||||||
ls -alFh
|
|
||||||
popd
|
|
||||||
|
|
||||||
- name: Upload static files as artifact
|
|
||||||
id: deployment
|
|
||||||
uses: actions/upload-pages-artifact@v3
|
|
||||||
with:
|
|
||||||
path: _docs/
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
needs: build
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
27
.github/workflows/test.yaml
vendored
27
.github/workflows/test.yaml
vendored
@ -1,27 +0,0 @@
|
|||||||
name: Tests
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "master" ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ "master" ]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup V
|
|
||||||
run: |
|
|
||||||
wget -qO /tmp/v.zip https://github.com/vlang/v/releases/latest/download/v_linux.zip
|
|
||||||
unzip -q /tmp/v.zip -d /tmp
|
|
||||||
echo /tmp/v >> "$GITHUB_PATH"
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: |
|
|
||||||
# fuck this
|
|
||||||
sed -i tests/mymod_test.out -e 's/846284/83d954/g'
|
|
||||||
sed -i tests/mymod_test_bare_map.out -e 's/845da4/83d4b4/g'
|
|
||||||
v -stats test .
|
|
@ -7,7 +7,7 @@ import net.http.mime
|
|||||||
pub struct CodeGenerator {
|
pub struct CodeGenerator {
|
||||||
pub:
|
pub:
|
||||||
// Path to file or directory to embed
|
// Path to file or directory to embed
|
||||||
path string @[required]
|
path string
|
||||||
// Path prefix if you want to add extra prefix for file paths
|
// Path prefix if you want to add extra prefix for file paths
|
||||||
prefix string
|
prefix string
|
||||||
// Glob patterns to match files the must be ignored when generating the code
|
// Glob patterns to match files the must be ignored when generating the code
|
||||||
|
Loading…
x
Reference in New Issue
Block a user