summaryrefslogtreecommitdiffstats
path: root/.github/workflows/onefiledist.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/onefiledist.yml')
-rw-r--r--.github/workflows/onefiledist.yml32
1 files changed, 18 insertions, 14 deletions
diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml
index eaf9128..f2f6c1e 100644
--- a/.github/workflows/onefiledist.yml
+++ b/.github/workflows/onefiledist.yml
@@ -27,18 +27,18 @@ jobs:
working-directory: unix
- name: Package
run: |
- cp ../unix/tclsh tclsh${TCL_PATCHLEVEL}_unofficial
- chmod +x tclsh${TCL_PATCHLEVEL}_unofficial
- tar -cf tclsh${TCL_PATCHLEVEL}_unofficial.tar tclsh${TCL_PATCHLEVEL}_unofficial
+ cp ../unix/tclsh tclsh${TCL_PATCHLEVEL}_snapshot
+ chmod +x tclsh${TCL_PATCHLEVEL}_snapshot
+ tar -cf tclsh${TCL_PATCHLEVEL}_snapshot.tar tclsh${TCL_PATCHLEVEL}_snapshot
working-directory: 1dist
- name: Upload
uses: actions/upload-artifact@v2
with:
- name: Tclsh ${{ env.TCL_PATCHLEVEL }} Linux single-file build (unofficial)
+ name: Tclsh ${{ env.TCL_PATCHLEVEL }} Linux single-file build (snapshot)
path: 1dist/*.tar
macos:
name: macOS
- runs-on: macos-latest
+ runs-on: macos-11
defaults:
run:
shell: bash
@@ -55,8 +55,12 @@ jobs:
run: |
mkdir 1dist
touch generic/tclStubInit.c generic/tclOOStubInit.c || true
+ wget https://github.com/culler/macher/releases/download/v1.3/macher
+ sudo cp macher /usr/local/bin
+ sudo chmod a+x /usr/local/bin/macher
echo "VER_PATH=$(cd tools; pwd)/addVerToFile.tcl" >> $GITHUB_ENV
echo "CREATE_DMG=$(cd create-dmg;pwd)/create-dmg" >> $GITHUB_ENV
+ echo "CFLAGS=-arch x86_64 -arch arm64e" >> $GITHUB_ENV
- name: Configure
run: ./configure --disable-symbols --disable-shared --enable-zipfs
working-directory: unix
@@ -70,8 +74,8 @@ jobs:
- name: Package
run: |
mkdir contents
- cp $TCL_BIN contents/tclsh${TCL_PATCHLEVEL}_unofficial
- chmod +x contents/tclsh${TCL_PATCHLEVEL}_unofficial
+ cp $TCL_BIN contents/tclsh${TCL_PATCHLEVEL}_snapshot
+ chmod +x contents/tclsh${TCL_PATCHLEVEL}_snapshot
cat > contents/README.txt <<EOF
This is a single-file executable developer preview of Tcl $TCL_PATCHLEVEL
@@ -79,20 +83,20 @@ jobs:
Use strictly at your own risk.
To run it, you need to copy the executable out and run:
- xattr -d com.apple.quarantine tclsh${TCL_PATCHLEVEL}_unofficial
+ xattr -d com.apple.quarantine tclsh${TCL_PATCHLEVEL}_snapshot
to mark the executable as runnable on your machine.
EOF
$CREATE_DMG \
- --volname "Tcl $TCL_PATCHLEVEL (unofficial)" \
+ --volname "Tcl $TCL_PATCHLEVEL (snapshot)" \
--window-pos 200 120 \
--window-size 800 400 \
- "Tcl-$TCL_PATCHLEVEL-(unofficial).dmg" \
+ "Tcl-$TCL_PATCHLEVEL-(snapshot).dmg" \
"contents/"
working-directory: 1dist
- name: Upload
uses: actions/upload-artifact@v2
with:
- name: Tclsh ${{ env.TCL_PATCHLEVEL }} macOS single-file build (unofficial)
+ name: Tclsh ${{ env.TCL_PATCHLEVEL }} macOS single-file build (snapshot)
path: 1dist/*.dmg
win:
name: Windows
@@ -125,10 +129,10 @@ jobs:
working-directory: win
- name: Set Executable Name
run: |
- cp ../win/tclsh*.exe tclsh${TCL_PATCHLEVEL}_unofficial.exe
+ cp ../win/tclsh*.exe tclsh${TCL_PATCHLEVEL}_snapshot.exe
working-directory: 1dist
- name: Upload
uses: actions/upload-artifact@v2
with:
- name: Tclsh ${{ env.TCL_PATCHLEVEL }} Windows single-file build (unofficial)
- path: '1dist/*_unofficial.exe'
+ name: Tclsh ${{ env.TCL_PATCHLEVEL }} Windows single-file build (snapshot)
+ path: '1dist/*_snapshot.exe'