changeset 78:fae1d67d8cfd

hg: convert git stuff
author Paper <mrpapersonic@gmail.com>
date Sun, 01 Oct 2023 03:03:29 -0400
parents 05d48515b2f5
children 8f90d5addda9
files .github/workflows/build.yml .gitignore .hgignore
diffstat 3 files changed, 57 insertions(+), 159 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/build.yml	Sun Oct 01 03:01:45 2023 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,103 +0,0 @@
-name: msvpvf CI
-
-on:
-  push:
-  pull_request:
-
-jobs:
-  build-win32:
-    name: Windows i686 (32-bit)
-    runs-on: windows-latest
-    steps:
-    - name: Cache MinGW
-      uses: actions/cache@v3
-      with:
-        path: C:\MinGW
-        key: MinGW
-
-    - name: Setup MinGW
-      run: |
-        if (!(Test-Path "C:\MinGW")) {
-          Invoke-WebRequest -OutFile mingw-get.zip "https://osdn.net/dl/mingw/mingw-get-0.6.3-mingw32-pre-20170905-1-bin.zip" -UserAgent "curl/7.55.1"
-          Expand-Archive -Path mingw-get.zip -DestinationPath C:\MinGW
-          Remove-Item -Path mingw-get.zip
-          C:\MinGW\bin\mingw-get.exe install mingw32-base-bin
-        }
-      shell: pwsh
-
-    - uses: actions/checkout@v2
-
-    - name: make
-      run: |
-        set PATH=C:\MinGW\bin;%PATH%
-        set CC=mingw32-gcc
-        mingw32-make CFLAGS=-static
-        mingw32-make gui CFLAGS=-static
-        strip msvpvf.exe
-        strip gui.exe
-      shell: cmd
-
-    - name: Upload artifact
-      uses: actions/upload-artifact@v2
-      with:
-        name: msvpvf-win32-${{ github.sha }}
-        path: |
-          LICENSE
-          gui.exe
-          msvpvf.exe
-
-  build-win64:
-    name: Windows amd64 (64-bit)
-    runs-on: windows-latest
-    defaults:
-      run:
-        shell: msys2 {0}
-    steps:
-    - name: Setup MSYS2
-      uses: msys2/setup-msys2@v2
-      with:
-        msystem: mingw64
-        install: >-
-          make
-          mingw-w64-x86_64-clang
-
-    - uses: actions/checkout@v2
-
-    - name: make
-      run: |
-        export CC=clang
-        make CFLAGS=-static
-        make gui CFLAGS=-static
-        strip msvpvf.exe
-        strip gui.exe
-
-    - name: Upload artifact
-      uses: actions/upload-artifact@v2
-      with:
-        name: msvpvf-win64-${{ github.sha }}
-        path: |
-          LICENSE
-          gui.exe
-          msvpvf.exe
-
-  build-mac:
-    name: macOS (64-bit)
-    runs-on: macOS-latest
-    steps:
-    - name: Install "dependencies"
-      run: brew install zip
-
-    - uses: actions/checkout@v2
-
-    - name: make
-      run: | 
-        make
-        strip msvpvf
-        zip msvpvf.zip msvpvf LICENSE
-
-    - name: Upload artifact
-      uses: actions/upload-artifact@v2
-      with:
-        name: msvpvf-osx-${{ github.sha }}
-        path: |
-          msvpvf.zip
--- a/.gitignore	Sun Oct 01 03:01:45 2023 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-# Prerequisites
-*.d
-
-# Object files
-*.o
-*.ko
-*.obj
-*.elf
-
-# Linker output
-*.ilk
-*.map
-*.exp
-
-# Precompiled Headers
-*.gch
-*.pch
-
-# Libraries
-*.lib
-*.a
-*.la
-*.lo
-
-# Shared objects (inc. Windows DLLs)
-*.dll
-*.so
-*.so.*
-*.dylib
-
-# Executables
-*.exe
-*.out
-*.app
-*.i*86
-*.x86_64
-*.hex
-
-# Debug files
-*.dSYM/
-*.su
-*.idb
-*.pdb
-
-# Kernel Module Compile Results
-*.mod*
-*.cmd
-.tmp_versions/
-modules.order
-Module.symvers
-Mkfile.old
-dkms.conf
-
-# VEGAS Project Files
-*.veg
-*.vf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Sun Oct 01 03:03:29 2023 -0400
@@ -0,0 +1,57 @@
+syntax: glob
+# Prerequisites
+*.d
+
+# Object files
+*.o
+*.ko
+*.obj
+*.elf
+
+# Linker output
+*.ilk
+*.map
+*.exp
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Libraries
+*.lib
+*.a
+*.la
+*.lo
+
+# Shared objects (inc. Windows DLLs)
+*.dll
+*.so
+*.so.*
+*.dylib
+
+# Executables
+*.exe
+*.out
+*.app
+*.i*86
+*.x86_64
+*.hex
+
+# Debug files
+*.dSYM/
+*.su
+*.idb
+*.pdb
+
+# Kernel Module Compile Results
+*.mod*
+*.cmd
+.tmp_versions/
+modules.order
+Module.symvers
+Mkfile.old
+dkms.conf
+
+# VEGAS Project Files
+*.veg
+*.vf