Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
959d776
Fix string concat in case of no email in analytics api
OhMaley Sep 16, 2024
346bc53
resource interface-> task updates
ihsaan-ullah Oct 4, 2024
8188a98
use competition queue in submission queue on rerun
ihsaan-ullah Oct 5, 2024
9d3370d
uploaded time added to task detail
ihsaan-ullah Oct 8, 2024
137251f
Updates Sept 15-22 2024 (#1593)
bbearce Oct 11, 2024
5fc4c2e
Merge pull request #1585 from OhMaley/fix/storage/analytics-api-handl…
Didayolo Oct 11, 2024
b5f8a7e
Merge pull request #1626 from codalab/fix/storage/analytics-api-handl…
Didayolo Oct 11, 2024
3c41aa7
organizers can now delete forum posts (#1613)
ihsaan-ullah Oct 11, 2024
79ef40b
bundles renamed to competition bundles, swapped postions of bundles a…
ihsaan-ullah Oct 11, 2024
cc71857
Rebase tasks_table_enhancements (#1628)
Didayolo Oct 11, 2024
50c7652
Merge pull request #1614 from codalab/rerun_submission_queue
Didayolo Oct 11, 2024
4e55382
task table show details on first two columns click
ihsaan-ullah Oct 12, 2024
ecaea3c
send computation and computation_indexes to backend when saving leade…
ihsaan-ullah Oct 12, 2024
658a2ed
handled submission file_name too long error and fixed the previous er…
ihsaan-ullah Oct 12, 2024
da4e05c
different header message if there is no current phase
ihsaan-ullah Oct 14, 2024
ae60436
Merge pull request #1612 from codalab/tasks_table_enhancements
Didayolo Oct 14, 2024
3dc257b
Merge pull request #1630 from codalab/computation_columns
Didayolo Oct 14, 2024
d860100
Merge pull request #1631 from codalab/submission_long_name
Didayolo Oct 14, 2024
e5d7c8f
Merge pull request #1634 from codalab/current_phase_ends
Didayolo Oct 14, 2024
231fe22
Convert orphan files deletion task to async using celery task. Update…
Didayolo Oct 14, 2024
1bd7c6f
Public tasks -- updates to ensure public tasks can be viewed and used…
ihsaan-ullah Oct 25, 2024
05a69d6
fix db inconsistency logs path finding
OhMaley Oct 30, 2024
4f0750b
Merge pull request #1642 from OhMaley/fix/storage/delete-orphan-files
Didayolo Oct 31, 2024
c2cd638
Merge pull request #1643 from codalab/fix/storage/delete-orphan-files
Didayolo Oct 31, 2024
09b9897
updates to realease version
ihsaan-ullah Oct 31, 2024
8987d83
removed count from competition query to fix the codabench
ihsaan-ullah Nov 5, 2024
8fe4274
flake fixed
ihsaan-ullah Nov 5, 2024
84b3946
Merge pull request #1645 from codalab/count_fix
Didayolo Nov 5, 2024
65a5c46
commented dynamic fetching of comp, users, submissions
ihsaan-ullah Nov 7, 2024
7557488
flake fixes
ihsaan-ullah Nov 7, 2024
7792f39
hide featured and popular competitions from home page
ihsaan-ullah Nov 7, 2024
23820cf
show static competiitons in popular and featured
ihsaan-ullah Nov 7, 2024
e352bec
Merge pull request #1649 from codalab/home_page_speed
ihsaan-ullah Nov 7, 2024
faf12fa
Changed timeout from 1 day to 5 days for submissions (MinIO link)
Nov 12, 2024
0e75bf4
Resend activation email functionality added (#1615)
ihsaan-ullah Nov 12, 2024
aa7040d
Merge pull request #1644 from codalab/release_version
Didayolo Nov 12, 2024
64a32ef
Merge pull request #1659 from codalab/submissionTimeout
Didayolo Nov 12, 2024
4b3195c
ingore datapoint with deleted competitions or deleted users
OhMaley Nov 13, 2024
5987112
Merge pull request #1662 from OhMaley/fix/storage/analytics-api-handl…
Didayolo Nov 14, 2024
8fc4573
Merge pull request #1663 from codalab/fix/storage/analytics-api-handl…
Didayolo Nov 14, 2024
88c35cb
Added logs that outputs to stderr to the Postgres service
Nov 18, 2024
f520628
Merge pull request #1667 from codalab/postgresLogs
Didayolo Nov 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions .github/workflows/release-version-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@ jobs:

- name: Get release information
id: get_release
uses: dawidd6/action-get-latest-release@v3
with:
release: true
run: |
response=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ github.repository }}/releases/latest)
echo "$response" | jq '.tag_name, .name, .published_at, .body, .html_url' | tee /tmp/release_info
echo "::set-output name=tag_name::$(echo "$response" | jq -r .tag_name)"
echo "::set-output name=name::$(echo "$response" | jq -r .name)"
echo "::set-output name=published_at::$(echo "$response" | jq -r .published_at)"
echo "::set-output name=body::$(echo "$response" | jq -r .body)"
echo "::set-output name=html_url::$(echo "$response" | jq -r .html_url)"


- name: Update version.json
run: |
Expand All @@ -25,7 +31,7 @@ jobs:
"release_name": "${{ steps.get_release.outputs.name }}",
"published_at": "${{ steps.get_release.outputs.published_at }}",
"body": "${{ steps.get_release.outputs.body }}"
"release_url": "${{ steps.get_release.outputs.html_url }}"
"html_url": "${{ steps.get_release.outputs.html_url }}"
}' > version.json

- name: Create new branch
Expand All @@ -41,10 +47,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update-version-${{ steps.get_release.outputs.tag_name }}
title: "Update version.json for release ${{ steps.get_release.outputs.tag_name }}"
body: "This PR updates version.json with the latest release information."
base: develop # Target branch for the pull request
run: |
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/pulls \
-d '{
"title": "Update version.json for release ${{ steps.get_release.outputs.tag_name }}",
"body": "This PR updates version.json with the latest release information.",
"head": "update-version-${{ steps.get_release.outputs.tag_name }}",
"base": "develop"
}'
15 changes: 8 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
FROM python:3.9
FROM python:3.9.20

RUN apt-get update && apt-get install -y gcc build-essential && rm -rf /var/lib/apt/lists/*

ENV PYTHONUNBUFFERED 1

ENV PYTHONUNBUFFERED=1

RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.3
# Poetry location so future commands (below) work
ENV PATH $PATH:/root/.local/bin

ENV PATH=$PATH:/root/.local/bin
# Want poetry to use system python of docker container
RUN poetry config virtualenvs.create false
RUN poetry config virtualenvs.in-project false

COPY pyproject.toml ./
COPY pyproject.toml poetry.lock ./

# Install dependencies
RUN poetry install

RUN poetry lock
RUN poetry install

WORKDIR /app
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ services:
environment:
- PGDATA=/var/lib/postgresql/data/pgdata
- POSTGRES_PASSWORD=${DB_PASSWORD}
command: ["postgres", "-c", "log_statement=all", "-c", "log_destination=stderr"]
ports:
- 5432:5432
volumes:
Expand Down
Loading